diff options
author | 2017-03-29 17:09:40 +0200 | |
---|---|---|
committer | 2017-03-29 17:09:40 +0200 | |
commit | 49f7c99c7786ce257fae28dfeae2f8ee5810424c (patch) | |
tree | 1bbd30dd4dd48596186846c2fc77a8dc748215d2 /3rdparty/bx/tests/vector_complex_test.cpp | |
parent | 79f22e060b2c012d628d5d1d83288c1bb6e6acef (diff) |
Update BGFX and BX (nw)
Diffstat (limited to '3rdparty/bx/tests/vector_complex_test.cpp')
-rw-r--r-- | 3rdparty/bx/tests/vector_complex_test.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/3rdparty/bx/tests/vector_complex_test.cpp b/3rdparty/bx/tests/vector_complex_test.cpp index a540ece8a40..17f511989c9 100644 --- a/3rdparty/bx/tests/vector_complex_test.cpp +++ b/3rdparty/bx/tests/vector_complex_test.cpp @@ -37,6 +37,8 @@ # define _strdup strdup #endif // !BX_COMPILER_MSVC +BX_PRAGMA_DIAGNOSTIC_IGNORED_MSVC(4996) // warning C4996: 'strdup': The POSIX name for this item is deprecated. Instead, use the ISO C and C++ conformant name: _strdup. See online help for details. + struct complex { complex() {data = 0;} complex(const char* s) { data = strdup(s); } |