summaryrefslogtreecommitdiff
path: root/wx+/image_resources.cpp
diff options
context:
space:
mode:
authorDaniel Wilhelm <daniel@wili.li>2015-10-02 14:56:07 +0200
committerDaniel Wilhelm <daniel@wili.li>2015-10-02 14:56:07 +0200
commitde73d25e0b27f4bee2de116d19cab32800785d64 (patch)
tree21de1736d12a92223ad04c02a5b0826d77e5e71c /wx+/image_resources.cpp
parent7.1 (diff)
downloadFreeFileSync-de73d25e0b27f4bee2de116d19cab32800785d64.tar.gz
FreeFileSync-de73d25e0b27f4bee2de116d19cab32800785d64.tar.bz2
FreeFileSync-de73d25e0b27f4bee2de116d19cab32800785d64.zip
7.2
Diffstat (limited to 'wx+/image_resources.cpp')
-rw-r--r--wx+/image_resources.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/wx+/image_resources.cpp b/wx+/image_resources.cpp
index 3a7ba3ee..9d4f2396 100644
--- a/wx+/image_resources.cpp
+++ b/wx+/image_resources.cpp
@@ -42,6 +42,9 @@ class GlobalResources
public:
static GlobalResources& instance()
{
+#if defined _MSC_VER && _MSC_VER > 1800
+#error remove warning
+#endif
//caveat: function scope static initialization is not thread-safe in VS 2010! => but we wouldn't use wxWidgets in combination with multithreading anyway!
static GlobalResources inst;
return inst;
bgstack15