summaryrefslogtreecommitdiffstats
path: root/src/entities/Dummy.cpp
diff options
context:
space:
mode:
authorerorcun <erorcunerorcun@hotmail.com.tr>2021-03-06 17:28:59 +0100
committererorcun <erorcunerorcun@hotmail.com.tr>2021-03-06 17:28:59 +0100
commit62b8f0f553917bf2db467941b5a055e08872913f (patch)
tree9e012cf5c6b1e530bee4c02e2540c52e471cdf12 /src/entities/Dummy.cpp
parentFix FPEs (diff)
downloadre3-62b8f0f553917bf2db467941b5a055e08872913f.tar
re3-62b8f0f553917bf2db467941b5a055e08872913f.tar.gz
re3-62b8f0f553917bf2db467941b5a055e08872913f.tar.bz2
re3-62b8f0f553917bf2db467941b5a055e08872913f.tar.lz
re3-62b8f0f553917bf2db467941b5a055e08872913f.tar.xz
re3-62b8f0f553917bf2db467941b5a055e08872913f.tar.zst
re3-62b8f0f553917bf2db467941b5a055e08872913f.zip
Diffstat (limited to 'src/entities/Dummy.cpp')
-rw-r--r--src/entities/Dummy.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/entities/Dummy.cpp b/src/entities/Dummy.cpp
index 9878b595..d62d2434 100644
--- a/src/entities/Dummy.cpp
+++ b/src/entities/Dummy.cpp
@@ -4,8 +4,8 @@
#include "World.h"
#include "Dummy.h"
-void *CDummy::operator new(size_t sz) { return CPools::GetDummyPool()->New(); }
-void CDummy::operator delete(void *p, size_t sz) { CPools::GetDummyPool()->Delete((CDummy*)p); }
+void *CDummy::operator new(size_t sz) throw() { return CPools::GetDummyPool()->New(); }
+void CDummy::operator delete(void *p, size_t sz) throw() { CPools::GetDummyPool()->Delete((CDummy*)p); }
void
CDummy::Add(void)