summaryrefslogtreecommitdiff
path: root/external
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-01-30 08:52:15 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-01-30 08:57:49 +0100
commit3cea15792452ea779e79c572e7287e2fe8ed9740 (patch)
tree7dfcaa80c10dbaaee3eb3cfdc8f9cfbac33a471f /external
parent27aa26a1953524304f75d8a7a58e87f67485d32c (diff)
Globally disable MSVC warning 4201 (nonstandard extension nameless struct)
...it is caused by some external code (newly so by glm included in chart2) and does not really add value. (Incidentally, all relevent compilers, Clang, GCC, and MSVC uniformly support this language extension anyway.) Change-Id: I5b4c11b5cea0267bf39ac95e9021a5761a4d7b91
Diffstat (limited to 'external')
-rw-r--r--external/np_sdk/inc/npapi.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/external/np_sdk/inc/npapi.h b/external/np_sdk/inc/npapi.h
index e554d2a985a4..d6b1c5986bdf 100644
--- a/external/np_sdk/inc/npapi.h
+++ b/external/np_sdk/inc/npapi.h
@@ -51,14 +51,7 @@
#endif
#if defined(_WIN32) && !defined(__SYMBIAN32__)
-#if defined _MSC_VER && _MSC_VER >= 1200
-#pragma warning(push)
-#pragma warning(disable:4201)
-#endif
#include <windef.h>
-#if defined _MSC_VER && _MSC_VER >= 1200
-#pragma warning(pop)
-#endif
#ifndef XP_WIN
#define XP_WIN 1
#endif