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.
 
 

32 wiersze
493 B

#pragma once
#include <stddef.h>
#include "gp/utils/allocators/allocator.hpp"
namespace gp {
struct dummy_allocator : public allocator {
/**
* @return nullptr, always
*/
virtual void* allocate(size_t)
{
return nullptr;
}
/**
* @return false, always
*/
virtual bool deallocate(void*)
{
return false;
}
/**
* @return false, always
*/
virtual bool try_reallocate(void*, size_t) {
return false;
}
virtual ~dummy_allocator() = default;
};
}