Change _MSC_VER to 2300 (sometime around VS2019) for CRYPTOPP_CXX14. Its just a guess that won't collide in the near future...

pull/35/head
Jeffrey Walton 2015-07-31 02:14:00 -04:00
parent 9fd44748c1
commit 2a09da77d6
1 changed files with 1 additions and 1 deletions

View File

@ -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