diff options
author | erorcun <erorcunerorcun@hotmail.com.tr> | 2021-03-06 17:28:59 +0100 |
---|---|---|
committer | erorcun <erorcunerorcun@hotmail.com.tr> | 2021-03-06 17:28:59 +0100 |
commit | 62b8f0f553917bf2db467941b5a055e08872913f (patch) | |
tree | 9e012cf5c6b1e530bee4c02e2540c52e471cdf12 /src/entities/Dummy.h | |
parent | Fix FPEs (diff) | |
download | re3-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.h')
-rw-r--r-- | src/entities/Dummy.h | 4 |
1 files changed, 2 insertions, 2 deletions
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); |