summaryrefslogtreecommitdiff
path: root/config_cxx.h
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2019-07-06 07:07:16 -0400
committerJeffrey Walton <noloader@gmail.com>2019-07-06 07:07:16 -0400
commitf0a2967191bc5943f7ae713263185bcc6aa77192 (patch)
tree434933f700f69ac06c9fe4347d497498978e9b7b /config_cxx.h
parent37de652635a056d51321a6cbedb83ac73b4559d5 (diff)
downloadcryptopp-git-f0a2967191bc5943f7ae713263185bcc6aa77192.tar.gz
Fix missing binary operator
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 2c5398b9..45164435 100644
--- a/config_cxx.h
+++ b/config_cxx.h
@@ -130,7 +130,7 @@
#endif // noexcept compilers
// variadic templates: MS at VS2013 (18.00); GCC at 4.3; Clang at 2.9; Intel 12.1; SunCC 5.13.
-#if (__cpp_variadic_templates >= 200704) || __has_feature(cxx_variadic_templates) \
+#if (__cpp_variadic_templates >= 200704) || __has_feature(cxx_variadic_templates) || \
(CRYPTOPP_MSC_VERSION >= 1800) || (__INTEL_COMPILER >= 1210) || \
(CRYPTOPP_GCC_VERSION >= 40300) || (__SUNPRO_CC >= 0x5130)
# define CRYPTOPP_CXX11_VARIADIC_TEMPLATES 1