summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJean-Daniel Dupas <devlists@shadowlab.org>2013-08-29 19:19:27 +0000
committerJean-Daniel Dupas <devlists@shadowlab.org>2013-08-29 19:19:27 +0000
commit224f7acc3612358a427e80642fa1c78aab5d30da (patch)
tree35240d13332e9240ef85bddace6c1ebbfedf786f
parentcdf7d557bd6835f66fe707ca7b1a8f22010ffb66 (diff)
downloadlibcxxabi_35a-224f7acc3612358a427e80642fa1c78aab5d30da.tar.gz
Change the two last remaining _LIBCPP_CANTTHROW to _NOEXCEPT
git-svn-id: https://llvm.org/svn/llvm-project/libcxxabi/trunk@189603 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--src/stdexcept.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/stdexcept.cpp b/src/stdexcept.cpp
index 076f474..246eea4 100644
--- a/src/stdexcept.cpp
+++ b/src/stdexcept.cpp
@@ -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;