| 417 | } |
| 418 | |
| 419 | void MemoryAccountant::destroyAccountantAllocationNode(MemoryAccountantAllocationNode* node) const |
| 420 | { |
| 421 | allocator_->free_memory((char*) node, sizeof(node), __FILE__, __LINE__); |
| 422 | } |
| 423 | |
| 424 | MemoryAccountant::MemoryAccountant() |
| 425 | : head_(NULLPTR), allocator_(defaultMallocAllocator()), useCacheSizes_(false) |
nothing calls this directly
no test coverage detected