From 4626b887be4234f12b656d4c9ce6fba16048abc7 Mon Sep 17 00:00:00 2001 From: Beman Date: Sun, 28 May 2017 16:34:24 -0400 Subject: [PATCH] #define _CRT_SECURE_NO_WARNINGS to avoid spurious VC++ warning --- test/std_interop_test.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/std_interop_test.cpp b/test/std_interop_test.cpp index 6b9c77d..4527137 100644 --- a/test/std_interop_test.cpp +++ b/test/std_interop_test.cpp @@ -8,6 +8,9 @@ // See library home page at http://www.boost.org/libs/system +// Avoid spurious VC++ warnings +# define _CRT_SECURE_NO_WARNINGS + #include #if defined(BOOST_NO_CXX11_HDR_SYSTEM_ERROR)