diff options
author | 2017-03-29 22:25:54 +0200 | |
---|---|---|
committer | 2017-03-29 22:25:54 +0200 | |
commit | b7adbf543894f3058cf5a5d192e786c9fa6bd885 (patch) | |
tree | 15206414efd38d8058c1b1e53dab7a0b4e63f789 /3rdparty | |
parent | d8a68e8f09c6c40a5c848392ac2777826da05c16 (diff) |
VS fix. (nw)
Diffstat (limited to '3rdparty')
-rw-r--r-- | 3rdparty/bx/src/string.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/3rdparty/bx/src/string.cpp b/3rdparty/bx/src/string.cpp index b39ae253984..03c47096d32 100644 --- a/3rdparty/bx/src/string.cpp +++ b/3rdparty/bx/src/string.cpp @@ -5,10 +5,14 @@ #include <bx/allocator.h> #include <bx/hash.h> +#ifdef __GNUC__ #pragma GCC diagnostic push #pragma GCC diagnostic ignored "-Wstrict-overflow" +#endif #include <bx/readerwriter.h> +#ifdef __GNUC__ #pragma GCC diagnostic pop +#endif #include <bx/string.h> #if !BX_CRT_NONE |