File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -189,7 +189,7 @@ namespace salloc {
189
189
\param _memory Pointer to allocated memory. */
190
190
inline void deallocate_force (pointer _memory, size_type = 0 ) const
191
191
{
192
- m_allocator.deallocate (pMem );
192
+ m_allocator.deallocate (_memory );
193
193
}
194
194
195
195
/* * \brief Allocate elements.
Original file line number Diff line number Diff line change @@ -226,9 +226,9 @@ namespace salloc {
226
226
/* * \brief Truly deallocates memory.
227
227
228
228
\param _memory Pointer to allocated memory. */
229
- inline void deallocate_force (pointer _memory) const
229
+ inline void deallocate_force (pointer _memory, size_type = 0 ) const
230
230
{
231
- m_allocator.deallocate (pMem );
231
+ m_allocator.deallocate (_memory );
232
232
}
233
233
234
234
/* * \brief Allocate array of elements.
You can’t perform that action at this time.
0 commit comments