9 lines
No EOL
198 B
C++
9 lines
No EOL
198 B
C++
|
|
#include "ContainersCommon.hpp"
|
|
|
|
#include <cstdlib>
|
|
|
|
namespace tp {
|
|
void* DefaultAllocator::allocate(ualni size) { return malloc(size); }
|
|
void DefaultAllocator::deallocate(void* p) { free(p); }
|
|
} |