diff options
Diffstat (limited to 'libcxx/src/typeinfo.cpp')
-rw-r--r-- | libcxx/src/typeinfo.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/libcxx/src/typeinfo.cpp b/libcxx/src/typeinfo.cpp index 2dca96fd4bb..9ca03a183e9 100644 --- a/libcxx/src/typeinfo.cpp +++ b/libcxx/src/typeinfo.cpp @@ -13,30 +13,30 @@ #include "typeinfo" -std::bad_cast::bad_cast() throw() +std::bad_cast::bad_cast() _NOEXCEPT { } -std::bad_cast::~bad_cast() throw() +std::bad_cast::~bad_cast() _NOEXCEPT { } const char* -std::bad_cast::what() const throw() +std::bad_cast::what() const _NOEXCEPT { return "std::bad_cast"; } -std::bad_typeid::bad_typeid() throw() +std::bad_typeid::bad_typeid() _NOEXCEPT { } -std::bad_typeid::~bad_typeid() throw() +std::bad_typeid::~bad_typeid() _NOEXCEPT { } const char* -std::bad_typeid::what() const throw() +std::bad_typeid::what() const _NOEXCEPT { return "std::bad_typeid"; } |