diff options
Diffstat (limited to 'deimos/core/allocator.cpp')
-rw-r--r-- | deimos/core/allocator.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/deimos/core/allocator.cpp b/deimos/core/allocator.cpp index f7217c8..642afb8 100644 --- a/deimos/core/allocator.cpp +++ b/deimos/core/allocator.cpp @@ -43,6 +43,15 @@ public: {
system = &m_system;
}
+
+ Allocator* CreateChild(Allocator* parent, const char* /* description */) override
+ {
+ return parent;
+ }
+
+ void DestroyChild(Allocator*) override
+ {
+ }
};
AllocatorApi* BootstrapAllocatorApi()
|