| 92 | class MallocAllocator: public Allocator { |
| 93 | public: |
| 94 | void* Allocate(size_t size) override { |
| 95 | return malloc(size); |
| 96 | } |
| 97 | void Deallocate(void* ptr) override { |
| 98 | free(ptr); |
| 99 | } |
nothing calls this directly
no outgoing calls
no test coverage detected