From 6102d18867f7b557e816535930c133e8c5c4821a Mon Sep 17 00:00:00 2001 From: jzmaddock Date: Fri, 1 Sep 2017 18:33:35 +0100 Subject: [PATCH] VC2017.3: don't test for wcscpy as VC2017.3 rejects it as "unsafe". --- test/boost_no_cwchar.ipp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/boost_no_cwchar.ipp b/test/boost_no_cwchar.ipp index d1117018..698dbd63 100644 --- a/test/boost_no_cwchar.ipp +++ b/test/boost_no_cwchar.ipp @@ -19,7 +19,7 @@ int test() wchar_t c1[2] = { 0 }; wchar_t c2[2] = { 0 }; if(wcscmp(c1,c2) || wcslen(c1)) return -1; - wcscpy(c1,c2); + //wcscpy(c1,c2); wcsxfrm(c1,c2,0); return 0; }