summaryrefslogtreecommitdiffstats
path: root/src/entities
diff options
context:
space:
mode:
authorSergeanur <s.anureev@yandex.ua>2021-05-18 06:33:47 +0200
committerSergeanur <s.anureev@yandex.ua>2021-05-18 06:33:47 +0200
commit3596897961224e2cebd93e1f94db37a957808989 (patch)
tree9378d463e73933c90dcf90be93da7c9bac3dbeb1 /src/entities
parentFix quiet police scanner on OpenAL (diff)
parentMerge branch 'miami' of http://git.jacksmininetwork.co.uk/re/re3 into miami (diff)
downloadre3-3596897961224e2cebd93e1f94db37a957808989.tar
re3-3596897961224e2cebd93e1f94db37a957808989.tar.gz
re3-3596897961224e2cebd93e1f94db37a957808989.tar.bz2
re3-3596897961224e2cebd93e1f94db37a957808989.tar.lz
re3-3596897961224e2cebd93e1f94db37a957808989.tar.xz
re3-3596897961224e2cebd93e1f94db37a957808989.tar.zst
re3-3596897961224e2cebd93e1f94db37a957808989.zip
Diffstat (limited to 'src/entities')
-rw-r--r--src/entities/Dummy.cpp4
-rw-r--r--src/entities/Dummy.h4
2 files changed, 4 insertions, 4 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)
diff --git a/src/entities/Dummy.h b/src/entities/Dummy.h
index 84b1ce1a..9b73eefc 100644
--- a/src/entities/Dummy.h
+++ b/src/entities/Dummy.h
@@ -12,8 +12,8 @@ public:
void Add(void);
void Remove(void);
- static void *operator new(size_t);
- static void operator delete(void*, size_t);
+ static void *operator new(size_t) throw();
+ static void operator delete(void*, size_t) throw();
};
bool IsDummyPointerValid(CDummy* pDummy);