Shot in the dark to fix gcc 4.9 / c++11 build



git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@337027 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/include/__config b/include/__config
index 87ba7e6..65df5dd 100644
--- a/include/__config
+++ b/include/__config
@@ -1024,10 +1024,10 @@
 #endif
 
 #ifndef _LIBCPP_CONSTEXPR_IF_NODEBUG
-#if !defined(_LIBCPP_DEBUG) && _LIBCPP_STD_VER >= 14
-#define _LIBCPP_CONSTEXPR_IF_NODEBUG constexpr
-#else
+#if defined(_LIBCPP_DEBUG) || _LIBCPP_HAS_NO_CXX14_CONSTEXPR
 #define _LIBCPP_CONSTEXPR_IF_NODEBUG
+#else
+#define _LIBCPP_CONSTEXPR_IF_NODEBUG constexpr
 #endif
 #endif