Update RadixSort.h

This commit is contained in:
alexey-milovidov 2020-11-26 03:20:43 +03:00 committed by GitHub
parent 78b510eaa1
commit f3c12397c2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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);
}
};