aboutsummaryrefslogtreecommitdiffstats
path: root/memory.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'memory.cpp')
-rw-r--r--memory.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/memory.cpp b/memory.cpp
index 2cc15be..59e2bbe 100644
--- a/memory.cpp
+++ b/memory.cpp
@@ -85,3 +85,12 @@ void *operator new[](std::size_t size)
return memory_alloc(size);
}
+void operator delete(void *ptr)
+{
+
+}
+
+void operator delete[](void *ptr)
+{
+
+}