summaryrefslogtreecommitdiffstats
path: root/source/Globals.h
diff options
context:
space:
mode:
Diffstat (limited to 'source/Globals.h')
-rw-r--r--source/Globals.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/source/Globals.h b/source/Globals.h
index 8d42d6341..2b37c6df4 100644
--- a/source/Globals.h
+++ b/source/Globals.h
@@ -8,6 +8,16 @@
+// Compiler-dependent stuff:
+#ifndef _MSC_VER
+ // Non-MS compilers don't know the override keyword
+ #define override
+#endif // _MSC_VER
+
+
+
+
+
// OS-dependent stuff:
#ifdef _WIN32
#define WIN32_LEAN_AND_MEAN
@@ -52,6 +62,7 @@
// STL stuff:
#include <vector>
#include <list>
+#include <deque>
#include <string>
#include <map>
#include <algorithm>