[libcxxabi] r189603 - Change the two last remaining _LIBCPP_CANTTHROW to _NOEXCEPT

Jean-Daniel Dupas devlists at shadowlab.org
Thu Aug 29 12:19:27 PDT 2013


Author: jddupas
Date: Thu Aug 29 14:19:27 2013
New Revision: 189603

URL: http://llvm.org/viewvc/llvm-project?rev=189603&view=rev
Log:
Change the two last remaining _LIBCPP_CANTTHROW to _NOEXCEPT


Modified:
    libcxxabi/trunk/src/stdexcept.cpp

Modified: libcxxabi/trunk/src/stdexcept.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxxabi/trunk/src/stdexcept.cpp?rev=189603&r1=189602&r2=189603&view=diff
==============================================================================
--- libcxxabi/trunk/src/stdexcept.cpp (original)
+++ libcxxabi/trunk/src/stdexcept.cpp Thu Aug 29 14:19:27 2013
@@ -47,7 +47,7 @@ private:
 #if __APPLE__
     static
     const void*
-    compute_gcc_empty_string_storage() _LIBCPP_CANTTHROW
+    compute_gcc_empty_string_storage() _NOEXCEPT
     {
         void* handle = dlopen("/usr/lib/libstdc++.6.dylib", RTLD_NOLOAD);
         if (handle == 0)
@@ -57,7 +57,7 @@ private:
     
     static
     const void*
-    get_gcc_empty_string_storage() _LIBCPP_CANTTHROW
+    get_gcc_empty_string_storage() _NOEXCEPT
     {
         static const void* p = compute_gcc_empty_string_storage();
         return p;





More information about the cfe-commits mailing list