[libcxx] r300649 - Cleanup usages of _LIBCPP_HAS_NO_<c++11-feature> in <exception>

Eric Fiselier via cfe-commits cfe-commits at lists.llvm.org
Tue Apr 18 18:35:58 PDT 2017


Author: ericwf
Date: Tue Apr 18 20:35:58 2017
New Revision: 300649

URL: http://llvm.org/viewvc/llvm-project?rev=300649&view=rev
Log:
Cleanup usages of _LIBCPP_HAS_NO_<c++11-feature> in <exception>

Modified:
    libcxx/trunk/include/exception

Modified: libcxx/trunk/include/exception
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/include/exception?rev=300649&r1=300648&r2=300649&view=diff
==============================================================================
--- libcxx/trunk/include/exception (original)
+++ libcxx/trunk/include/exception Tue Apr 18 20:35:58 2017
@@ -209,11 +209,11 @@ struct __throw_with_nested;
 template <class _Tp, class _Up>
 struct __throw_with_nested<_Tp, _Up, true> {
     _LIBCPP_NORETURN static inline _LIBCPP_ALWAYS_INLINE void
-    #ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
+#ifndef _LIBCPP_CXX03_LANG
     __do_throw(_Tp&& __t)
-    #else
+#else
     __do_throw (_Tp& __t)
-    #endif  // _LIBCPP_HAS_NO_RVALUE_REFERENCES
+#endif  // _LIBCPP_CXX03_LANG
     {
         throw __nested<_Up>(_VSTD::forward<_Tp>(__t));
     }
@@ -222,11 +222,11 @@ struct __throw_with_nested<_Tp, _Up, tru
 template <class _Tp, class _Up>
 struct __throw_with_nested<_Tp, _Up, false> {
     _LIBCPP_NORETURN static inline _LIBCPP_ALWAYS_INLINE void
-    #ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
+#ifndef _LIBCPP_CXX03_LANG
     __do_throw(_Tp&& __t)
-    #else
+#else
     __do_throw (_Tp& __t)
-    #endif  // _LIBCPP_HAS_NO_RVALUE_REFERENCES
+#endif  // _LIBCPP_CXX03_LANG
     {
         throw _VSTD::forward<_Tp>(__t);
     }
@@ -236,11 +236,11 @@ struct __throw_with_nested<_Tp, _Up, fal
 template <class _Tp>
 _LIBCPP_NORETURN
 void
-#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
+#ifndef _LIBCPP_CXX03_LANG
 throw_with_nested(_Tp&& __t)
 #else
 throw_with_nested (_Tp& __t)
-#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
+#endif // _LIBCPP_CXX03_LANG
 {
 #ifndef _LIBCPP_NO_EXCEPTIONS
     typedef typename decay<_Tp>::type _Up;




More information about the cfe-commits mailing list