| 135 | { |
| 136 | private: |
| 137 | void* do_allocate( std::size_t bytes, std::size_t align ) override |
| 138 | { |
| 139 | std::cout << "Allocating " << bytes << " bytes with alignment " << align << '\n'; |
| 140 | |
| 141 | return ::operator new( bytes ); |
| 142 | } |
| 143 | |
| 144 | void do_deallocate( void* ptr, std::size_t bytes, std::size_t align ) override |
| 145 | { |
nothing calls this directly
no outgoing calls
no test coverage detected