summaryrefslogtreecommitdiff
path: root/cryptlib.h
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2023-03-02 08:59:15 -0500
committerJeffrey Walton <noloader@gmail.com>2023-03-02 08:59:15 -0500
commita21bab3255dd3c7708d8af4cc065e3e2464db48a (patch)
treea8e1a75c27dd568d97887098b9e314eada74f46b /cryptlib.h
parentc364032d4c9e025704cf7caf379e8880ad87a59a (diff)
downloadcryptopp-git-a21bab3255dd3c7708d8af4cc065e3e2464db48a.tar.gz
Fix MSC version numbers (GH #1185)
Diffstat (limited to 'cryptlib.h')
-rw-r--r--cryptlib.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/cryptlib.h b/cryptlib.h
index a528b780..3e07e860 100644
--- a/cryptlib.h
+++ b/cryptlib.h
@@ -106,12 +106,12 @@ and getting us started on the manual.
#include "stdcpp.h"
#include "trap.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)
# pragma warning(disable: 4127 4189 4505 4702)
-# if (CRYPTOPP_MSC_VERSION >= 1434)
+# if (CRYPTOPP_MSC_VERSION >= 1933)
# pragma warning(disable: 5264)
# endif
#endif