Test Plan: No
Reviewed By: philipp@fb.com
FB internal diff:
D709795
*
* The SimpleAllocator must provide two methods:
* void* allocate(size_t size);
- * void deallocate(void* ptr, size_t size);
+ * void deallocate(void* ptr);
* which, respectively, allocate a block of size bytes (aligned to the maximum
* alignment required on your system), throwing std::bad_alloc if the
* allocation can't be satisfied, and free a previously allocated block.