mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-25 00:52:02 +00:00
Update RadixSort.h
This commit is contained in:
parent
78b510eaa1
commit
f3c12397c2
@ -42,9 +42,9 @@ struct RadixSortAllocator
|
||||
return ::operator new(size);
|
||||
}
|
||||
|
||||
void deallocate(void * ptr, size_t /*size*/)
|
||||
void deallocate(void * ptr, size_t size)
|
||||
{
|
||||
::operator delete(ptr);
|
||||
::operator delete(ptr, size);
|
||||
}
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user