| 30 | } |
| 31 | |
| 32 | virtual void do_deallocate(void* ptr, size_t bytes, |
| 33 | size_t alignment) noexcept override { |
| 34 | deallocate_called = true; |
| 35 | ::operator delete(ptr, bytes, ::std::align_val_t(alignment)); |
| 36 | } |
| 37 | |
| 38 | virtual bool do_is_equal( |
| 39 | const memory_resource& __other) const noexcept override { |
nothing calls this directly
no test coverage detected