summaryrefslogtreecommitdiff
path: root/misc.h
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2019-07-14 19:02:58 -0400
committerJeffrey Walton <noloader@gmail.com>2019-07-14 19:02:58 -0400
commitf5881d121a5d3adbcb16d8ef3fcaa6b98e70159d (patch)
tree80320e70a90249bd5315fe0373e125e3750ac1ef /misc.h
parent002e794ae2300d68fadac0b49fc9e15e896f8f5f (diff)
downloadcryptopp-git-f5881d121a5d3adbcb16d8ef3fcaa6b98e70159d.tar.gz
CRYPTOPP_CXX11_STATIC_ASSERT -> CRYPTOPP_CXX14_STATIC_ASSERT
WHoops, this is a C++14 feature
Diffstat (limited to 'misc.h')
-rw-r--r--misc.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/misc.h b/misc.h
index 23093be3..1e80bea4 100644
--- a/misc.h
+++ b/misc.h
@@ -147,7 +147,7 @@ class Integer;
/// a <tt>CompileAssert</tt> structure is used. When the structure is used
/// a negative-sized array triggers the assert at compile time.
# define CRYPTOPP_COMPILE_ASSERT(expr) { ... }
-#elif defined(CRYPTOPP_CXX11_STATIC_ASSERT)
+#elif defined(CRYPTOPP_CXX14_STATIC_ASSERT)
# define CRYPTOPP_COMPILE_ASSERT(expr) static_assert(expr)
#else // CRYPTOPP_DOXYGEN_PROCESSING
template <bool b>