summaryrefslogtreecommitdiff
path: root/deimos/core/api_registry.cpp
diff options
context:
space:
mode:
authorSteven Le Rouzic <steven.lerouzic@gmail.com>2024-04-20 01:22:04 +0200
committerSteven Le Rouzic <steven.lerouzic@gmail.com>2024-04-21 00:49:12 +0200
commitc147cb2a949d2a5c75804613c45e46c1a2ec8ab1 (patch)
treeb455973c23b4475244fcc5d8b54077a71a1c5126 /deimos/core/api_registry.cpp
parent10ec28c5de9442fe93635ae76ca397d138f9e93c (diff)
Temporary allocator
Diffstat (limited to 'deimos/core/api_registry.cpp')
-rw-r--r--deimos/core/api_registry.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/deimos/core/api_registry.cpp b/deimos/core/api_registry.cpp
index 41c0257..9d0c93f 100644
--- a/deimos/core/api_registry.cpp
+++ b/deimos/core/api_registry.cpp
@@ -8,6 +8,7 @@ namespace deimos
AllocatorApi* BootstrapAllocatorApi();
void RegisterOsApi(ApiRegistry*);
+void RegisterTempAllocatorApi(ApiRegistry*);
void RegisterLogApi(ApiRegistry*);
void InitializeStatus(ApiRegistry*);
@@ -59,6 +60,7 @@ ApiRegistry* InitializeGlobalApiRegistry()
InitializeStatus(api_registry);
RegisterOsApi(api_registry);
+ RegisterTempAllocatorApi(api_registry);
RegisterLogApi(api_registry);
return api_registry;