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.
|
#pragma once
|
|
|
|
#include <stddef.h>
|
|
#include "gp/allocator/allocator.hpp"
|
|
|
|
namespace gp {
|
|
struct dummy_allocator : public allocator {
|
|
virtual void* allocate(size_t)
|
|
{
|
|
return nullptr;
|
|
}
|
|
|
|
virtual bool deallocate(void*)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
virtual bool try_reallocate(void*, size_t) {
|
|
return false;
|
|
}
|
|
virtual ~dummy_allocator() = default;
|
|
};
|
|
}
|