#pragma once #include namespace gp { struct dummy_allocator{ void* allocate(size_t) { return nullptr; } bool deallocate(void*) { return false; } constexpr bool try_reallocate(void*, size_t) { return false; } }; }