Fixed compiler error " error: missing binary operator before token 'defined'"

pull/35/head
Jeffrey Walton 2015-07-27 14:43:18 -04:00
parent 23d28aa123
commit 8dd3a77e11
1 changed files with 2 additions and 2 deletions

View File

@ -508,7 +508,7 @@ NAMESPACE_END
# endif
#elif (__INTEL_COMPILER >= 1110)
# define CRYPTOPP_CXX11_RVALUES 1
#elif (__GNUC__ >= 5 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 3)) && !(defined(__INTEL_COMPILER || defined(__clang__))
#elif (__GNUC__ >= 5 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 3)) && !(defined(__INTEL_COMPILER) || defined(__clang__))
# define CRYPTOPP_CXX11_RVALUES 1
#endif // R-value compilers
@ -522,7 +522,7 @@ NAMESPACE_END
# endif
#elif (__INTEL_COMPILER >= 1400)
# define CRYPTOPP_CXX11_RVALUES 1
#elif (__GNUC__ >= 5 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 6)) && !(defined(__INTEL_COMPILER || defined(__clang__))
#elif (__GNUC__ >= 5 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 6)) && !(defined(__INTEL_COMPILER) || defined(__clang__))
# define CRYPTOPP_CXX11_NOEXCEPT 1
# error
#endif // noexcept compilers