From a21bab3255dd3c7708d8af4cc065e3e2464db48a Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Thu, 2 Mar 2023 08:59:15 -0500 Subject: Fix MSC version numbers (GH #1185) --- config_int.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'config_int.h') diff --git a/config_int.h b/config_int.h index d71c08ef..a10fc0b4 100644 --- a/config_int.h +++ b/config_int.h @@ -29,11 +29,11 @@ #include "config_ver.h" #include "config_misc.h" -// C5264 new for VS2022/v17.4, MSC v14.34 +// C5264 new for VS2022/v17.4, MSC v17.3.4 // https://github.com/weidai11/cryptopp/issues/1185 #if (CRYPTOPP_MSC_VERSION) # pragma warning(push) -# if (CRYPTOPP_MSC_VERSION >= 1434) +# if (CRYPTOPP_MSC_VERSION >= 1933) # pragma warning(disable: 5264) # endif #endif -- cgit v1.2.1