summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authoranonymous <local@localhost>2010-07-05 22:56:06 +0000
committeranonymous <local@localhost>2010-07-05 22:56:06 +0000
commita0de666da82b08c67821f1dd16a1dd81dba80513 (patch)
tree79f946a2959eff9f8138eaac6e1b5dc2d51f487e /src
parent44cd974ddf2d4cf10dc428e5244c99ad6312a3f2 (diff)
downloadlibcxxrt-a0de666da82b08c67821f1dd16a1dd81dba80513.tar.gz
libcxxrt-a0de666da82b08c67821f1dd16a1dd81dba80513.tar.bz2
libcxxrt-a0de666da82b08c67821f1dd16a1dd81dba80513.tar.xz
Missing throw() specifier is added
Diffstat (limited to 'src')
-rw-r--r--src/exception.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/exception.cc b/src/exception.cc
index 27c9e5f..11f8ca5 100644
--- a/src/exception.cc
+++ b/src/exception.cc
@@ -758,7 +758,7 @@ extern "C" _Unwind_Reason_Code __gxx_personality_v0(int version,
* pointer to the caught exception, which is either the adjusted pointer (for
* C++ exceptions) of the unadjusted pointer (for foreign exceptions).
*/
-extern "C" void *__cxa_begin_catch(void *e)
+extern "C" void *__cxa_begin_catch(void *e) throw()
{
// Decrement the uncaught exceptions count
__cxa_eh_globals *globals = __cxa_get_globals();