summaryrefslogtreecommitdiffstats
path: root/src/Globals.h
diff options
context:
space:
mode:
authorMattes D <github@xoft.cz>2017-06-19 11:08:08 +0200
committerGitHub <noreply@github.com>2017-06-19 11:08:08 +0200
commit801084c38cf8534c9c0e4b38117eb95d3c5533f4 (patch)
treea43bdf18d6d66fd8a9a226d8e9b9b63c1e6265f2 /src/Globals.h
parentRemoved the LeakFinder for Windows. (#3777) (diff)
downloadcuberite-801084c38cf8534c9c0e4b38117eb95d3c5533f4.tar
cuberite-801084c38cf8534c9c0e4b38117eb95d3c5533f4.tar.gz
cuberite-801084c38cf8534c9c0e4b38117eb95d3c5533f4.tar.bz2
cuberite-801084c38cf8534c9c0e4b38117eb95d3c5533f4.tar.lz
cuberite-801084c38cf8534c9c0e4b38117eb95d3c5533f4.tar.xz
cuberite-801084c38cf8534c9c0e4b38117eb95d3c5533f4.tar.zst
cuberite-801084c38cf8534c9c0e4b38117eb95d3c5533f4.zip
Diffstat (limited to 'src/Globals.h')
-rw-r--r--src/Globals.h11
1 files changed, 9 insertions, 2 deletions
diff --git a/src/Globals.h b/src/Globals.h
index e3a537eaa..4e15473e1 100644
--- a/src/Globals.h
+++ b/src/Globals.h
@@ -49,7 +49,13 @@
#define SIZE_T_FMT_PRECISION(x) "%" #x "Iu"
#define SIZE_T_FMT_HEX "%Ix"
- #define NORETURN __declspec(noreturn)
+ #define NORETURN __declspec(noreturn)
+ #if (_MSC_VER < 1910)
+ // MSVC 2013 (and possibly 2015?) have no idea about "noexcept(false)"
+ #define NO_THROW throw(...)
+ #else
+ #define NO_THROW noexcept(false)
+ #endif
// Use non-standard defines in <cmath>
#define _USE_MATH_DEFINES
@@ -93,7 +99,8 @@
#define SIZE_T_FMT_HEX "%zx"
#endif
- #define NORETURN __attribute((__noreturn__))
+ #define NORETURN __attribute((__noreturn__))
+ #define NO_THROW noexcept(false)
#else