summaryrefslogtreecommitdiffstats
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
commit8d362a999e0b471d7eff822a09b0ac3485703276 (patch)
tree640452dc6b552d3228ec1d50b33abd9847e10e88
parenteabb87c438ab5977e6c63aa3ddfda0019d994f88 (diff)
downloadbcm5719-llvm-8d362a999e0b471d7eff822a09b0ac3485703276.tar.gz
bcm5719-llvm-8d362a999e0b471d7eff822a09b0ac3485703276.zip
Change the two last remaining _LIBCPP_CANTTHROW to _NOEXCEPT
llvm-svn: 189603
-rw-r--r--libcxxabi/src/stdexcept.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/libcxxabi/src/stdexcept.cpp b/libcxxabi/src/stdexcept.cpp
index 076f474303b..246eea4bcea 100644
--- a/libcxxabi/src/stdexcept.cpp
+++ b/libcxxabi/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;
OpenPOWER on IntegriCloud