diff options
author | paolo <paolo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-07-30 15:26:44 +0000 |
---|---|---|
committer | paolo <paolo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-07-30 15:26:44 +0000 |
commit | 7773bde8de1f0af457dc8fba1a3e35ef7460109c (patch) | |
tree | cc2006d616b4454253932e9656d23b324398ec1c | |
parent | 3e7bf7ba3c2ae5ac45de56294f189e5f603bd0a7 (diff) | |
download | gcc-7773bde8de1f0af457dc8fba1a3e35ef7460109c.tar.gz |
2009-07-30 Paolo Carlini <paolo.carlini@oracle.com>
PR libstdc++/40915
* testsuite/18_support/headers/exception/synopsis.cc: Fix
std::terminate declaration.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@150260 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r-- | libstdc++-v3/ChangeLog | 6 | ||||
-rw-r--r-- | libstdc++-v3/testsuite/18_support/headers/exception/synopsis.cc | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 6e7b73d90b3..395160108df 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,9 @@ +2009-07-30 Paolo Carlini <paolo.carlini@oracle.com> + + PR libstdc++/40915 + * testsuite/18_support/headers/exception/synopsis.cc: Fix + std::terminate declaration. + 2009-07-29 Paolo Carlini <paolo.carlini@oracle.com> PR libstdc++/40908 diff --git a/libstdc++-v3/testsuite/18_support/headers/exception/synopsis.cc b/libstdc++-v3/testsuite/18_support/headers/exception/synopsis.cc index a66c0156291..6c64eb29d9f 100644 --- a/libstdc++-v3/testsuite/18_support/headers/exception/synopsis.cc +++ b/libstdc++-v3/testsuite/18_support/headers/exception/synopsis.cc @@ -29,7 +29,7 @@ namespace std { typedef void (*terminate_handler)(); terminate_handler set_terminate(terminate_handler f ) throw(); - void terminate(); + void terminate() throw(); bool uncaught_exception() throw(); } |