From a090aad8d2bb30f71d0fb6162afece367b0c8034 Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Thu, 18 May 2017 08:45:07 -0400 Subject: [PATCH] Fix "warning C4702: unreachable code" under Windows Phone --- fipstest.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fipstest.cpp b/fipstest.cpp index ccaed1b3..a7419821 100644 --- a/fipstest.cpp +++ b/fipstest.cpp @@ -46,7 +46,7 @@ extern "C" {void __cdecl _CRT_DEBUGGER_HOOK(int); } #include #if CRYPTOPP_MSC_VERSION -# pragma warning(disable: 4100) +# pragma warning(disable: 4100 4702) #endif NAMESPACE_BEGIN(CryptoPP)