ICU-11754 remove gcc version test for noexcept.

X-SVN-Rev: 37630
This commit is contained in:
Andy Heninger 2015-06-29 18:15:44 +00:00
parent cac1e10605
commit d3301c325e

View File

@ -509,7 +509,6 @@
#ifdef U_NOEXCEPT
/* Use the predefined value. */
#elif U_CPLUSPLUS_VERSION >= 11 || __has_feature(cxx_noexcept) || __has_extension(cxx_noexcept) \
|| (U_GCC_MAJOR_MINOR >= 406 && U_CPLUSPLUS_VERSION >= 11) \
|| (defined(_MSC_VER) && _MSC_VER >= 1900) /* Visual Studio 2015 */
# define U_NOEXCEPT noexcept
#else