General Purpose library for Freestanding C++ and POSIX systems
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 

21 satır
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;
}
};
}