]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
re PR libstdc++/40915 ([4.5 Regressions] FAIL: 18_support/headers/exception/synopsis...
authorPaolo Carlini <paolo.carlini@oracle.com>
Thu, 30 Jul 2009 15:26:44 +0000 (15:26 +0000)
committerPaolo Carlini <paolo@gcc.gnu.org>
Thu, 30 Jul 2009 15:26:44 +0000 (15:26 +0000)
2009-07-30  Paolo Carlini  <paolo.carlini@oracle.com>

PR libstdc++/40915
* testsuite/18_support/headers/exception/synopsis.cc: Fix
std::terminate declaration.

From-SVN: r150260

libstdc++-v3/ChangeLog
libstdc++-v3/testsuite/18_support/headers/exception/synopsis.cc

index 6e7b73d90b3dd2da88789fa44e62560f9043298a..395160108dfa96420e6391ff2916ef900995f162 100644 (file)
@@ -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
index a66c015629196d5b08357925ee236b0b9d38395e..6c64eb29d9f59aa17c808140e63f046116aa327b 100644 (file)
@@ -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();
 }