aboutsummaryrefslogtreecommitdiff
path: root/noexception.cc
diff options
context:
space:
mode:
Diffstat (limited to 'noexception.cc')
-rw-r--r--noexception.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/noexception.cc b/noexception.cc
index 25dac1279684..7d17920c7cf4 100644
--- a/noexception.cc
+++ b/noexception.cc
@@ -30,7 +30,7 @@ namespace std
* Returns whether there are any exceptions currently being thrown that
* have not been caught. Without exception support this is always false.
*/
- bool uncaught_exception() throw()
+ bool uncaught_exception() _LIBCXXRT_NOEXCEPT
{
return false;
}
@@ -38,7 +38,7 @@ namespace std
* Returns the number of exceptions currently being thrown that have not
* been caught. Without exception support this is always 0.
*/
- int uncaught_exceptions() throw()
+ int uncaught_exceptions() _LIBCXXRT_NOEXCEPT
{
return 0;
}