From f0a2967191bc5943f7ae713263185bcc6aa77192 Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Sat, 6 Jul 2019 07:07:16 -0400 Subject: [PATCH] Fix missing binary operator --- config_cxx.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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