From: Paolo Carlini Date: Thu, 30 Jul 2009 15:26:44 +0000 (+0000) Subject: re PR libstdc++/40915 ([4.5 Regressions] FAIL: 18_support/headers/exception/synopsis... X-Git-Tag: releases/gcc-4.5.0~4269 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=4380ae3548817d753ca153c7bfbf1d77c9469e9b;p=thirdparty%2Fgcc.git re PR libstdc++/40915 ([4.5 Regressions] FAIL: 18_support/headers/exception/synopsis.cc (test for excess errors)) 2009-07-30 Paolo Carlini PR libstdc++/40915 * testsuite/18_support/headers/exception/synopsis.cc: Fix std::terminate declaration. From-SVN: r150260 --- diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 6e7b73d90b3d..395160108dfa 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,9 @@ +2009-07-30 Paolo Carlini + + PR libstdc++/40915 + * testsuite/18_support/headers/exception/synopsis.cc: Fix + std::terminate declaration. + 2009-07-29 Paolo Carlini 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 a66c01562919..6c64eb29d9f5 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(); }