diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-01-30 08:52:15 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-01-30 08:57:49 +0100 |
commit | 3cea15792452ea779e79c572e7287e2fe8ed9740 (patch) | |
tree | 7dfcaa80c10dbaaee3eb3cfdc8f9cfbac33a471f /include | |
parent | 27aa26a1953524304f75d8a7a58e87f67485d32c (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 'include')
-rw-r--r-- | include/vcl/sysdata.hxx | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/include/vcl/sysdata.hxx b/include/vcl/sysdata.hxx index af65ce68df4a..2328cbe49f35 100644 --- a/include/vcl/sysdata.hxx +++ b/include/vcl/sysdata.hxx @@ -41,14 +41,7 @@ typedef struct CGContext *CGContextRef; #endif #if defined( WNT ) -#ifdef _MSC_VER -#pragma warning(push) -#pragma warning(disable:4201) -#endif #include <windef.h> -#ifdef _MSC_VER -#pragma warning(pop) -#endif #endif struct SystemEnvData |