From 2a09da77d6cc63151029c59a87e41030b8032480 Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Fri, 31 Jul 2015 02:14:00 -0400 Subject: [PATCH] Change _MSC_VER to 2300 (sometime around VS2019) for CRYPTOPP_CXX14. Its just a guess that won't collide in the near future... --- config.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.h b/config.h index c3aa7a08..ab1f49aa 100644 --- a/config.h +++ b/config.h @@ -514,7 +514,7 @@ NAMESPACE_END // C++14 adds a operator”” and Small String Optimizations (SSO) // TODO: change this when Microsoft adds support -#if (_MSC_VER >= 1600) || (__cplusplus >= 201402L) +#if (_MSC_VER >= 2300) || (__cplusplus >= 201402L) # define CRYPTOPP_CXX14 1 #endif