General Purpose library for Freestanding C++ and POSIX systems
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 

21 行
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;
}
};
}