summaryrefslogtreecommitdiffstatshomepage
path: root/3rdparty/bx/tests/vector_complex_test.cpp
diff options
context:
space:
mode:
Diffstat (limited to '3rdparty/bx/tests/vector_complex_test.cpp')
-rw-r--r--3rdparty/bx/tests/vector_complex_test.cpp2
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); }