This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
small patch
- To: egcs at cygnus dot com
- Subject: small patch
- From: mrs at wrs dot com (Mike Stump)
- Date: Fri, 27 Mar 1998 17:47:50 -0800
Based on comment from Peter Leven
<leven@lpr.e-technik.tu-muenchen.de>, thanks Peter.
Fri Mar 27 17:46:16 1998 Mike Stump <mrs@wrs.com>
* inc/exception: Fix ordering of closing braces.
Doing diffs in gcc/cp/inc:
*** gcc/cp/inc/exception.~1~ Thu Jan 15 17:45:20 1998
--- gcc/cp/inc/exception Fri Mar 27 17:44:59 1998
*************** void terminate (void) __attribute__ ((__
*** 33,42 ****
unexpected_handler set_unexpected (unexpected_handler);
void unexpected (void) __attribute__ ((__noreturn__));
bool uncaught_exception ();
- } // extern "C++"
#if 0
} // namespace std
#endif
#endif
--- 33,43 ----
unexpected_handler set_unexpected (unexpected_handler);
void unexpected (void) __attribute__ ((__noreturn__));
bool uncaught_exception ();
#if 0
} // namespace std
#endif
+
+ } // extern "C++"
#endif
--------------