Change the two last remaining _LIBCPP_CANTTHROW to _NOEXCEPT

llvm-svn: 189603
This commit is contained in:
Jean-Daniel Dupas 2013-08-29 19:19:27 +00:00
parent eabb87c438
commit 8d362a999e
1 changed files with 2 additions and 2 deletions

View File

@ -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;