Initial
This commit is contained in:
parent
d4c558a59a
commit
db05d963be
74 changed files with 4473 additions and 3231 deletions
18
Containers/private/Containers.cpp
Normal file
18
Containers/private/Containers.cpp
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
|
||||
#include "ContainersCommon.hpp"
|
||||
|
||||
#include <cstdlib>
|
||||
|
||||
namespace tp {
|
||||
|
||||
static ModuleManifest* sModuleDependencies[] = { &gModuleBase,nullptr };
|
||||
ModuleManifest gModuleContainers = ModuleManifest("Containers", nullptr, nullptr, sModuleDependencies);
|
||||
|
||||
void* DefaultAllocator::allocate(ualni size) {
|
||||
return malloc(size);
|
||||
}
|
||||
|
||||
void DefaultAllocator::deallocate(void* p) {
|
||||
free(p);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue