| 326 | } |
| 327 | |
| 328 | FailableMemoryAllocator::FailableMemoryAllocator(const char* name_str, const char* alloc_name_str, const char* free_name_str) |
| 329 | : TestMemoryAllocator(name_str, alloc_name_str, free_name_str), head_(NULLPTR), currentAllocNumber_(0) |
| 330 | { |
| 331 | } |
| 332 | |
| 333 | void FailableMemoryAllocator::failAllocNumber(int number) |
| 334 | { |
nothing calls this directly
no outgoing calls
no test coverage detected