General Purpose library for Freestanding C++ and POSIX systems
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 

21 wiersze
255 B

#pragma once
#include <stddef.h>
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;
}
};
}