General Purpose library for Freestanding C++ and POSIX systems
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
 
 

32 rindas
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;
};
}