summaryrefslogtreecommitdiff
path: root/config_cxx.h
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2020-08-05 23:29:10 -0400
committerJeffrey Walton <noloader@gmail.com>2020-08-05 23:29:10 -0400
commit66d7a2a6045d092a3d131cf06289e68b9ba46e3b (patch)
tree3f1c51c8fa469c9ffcc7bc6f97a70ab1d1b5f84e /config_cxx.h
parent5568cac59020cd6531c683337e0b812337b282e8 (diff)
downloadcryptopp-git-66d7a2a6045d092a3d131cf06289e68b9ba46e3b.tar.gz
Fix define CRYPTOPP_CXX17_STATIC_ASSERT name
That's a C++17 feature, not C++11
Diffstat (limited to 'config_cxx.h')
-rw-r--r--config_cxx.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/config_cxx.h b/config_cxx.h
index b8299386..0088bbe0 100644
--- a/config_cxx.h
+++ b/config_cxx.h
@@ -198,7 +198,7 @@
// Extended static_assert with one argument
// Microsoft cannot handle the single argument static_assert as of VS2019 (cl.exe 19.00)
#if (__cpp_static_assert >= 201411)
-# define CRYPTOPP_CXX14_STATIC_ASSERT 1
+# define CRYPTOPP_CXX17_STATIC_ASSERT 1
#endif // static_assert
#endif