From mboxrd@z Thu Jan 1 00:00:00 1970 From: mrs@wrs.com (Mike Stump) To: egcs@cygnus.com Subject: small patch Date: Sun, 29 Mar 1998 05:14:00 -0000 Message-id: <199803280147.RAA03832@kankakee.wrs.com> X-SW-Source: 1998-03/msg01002.html Based on comment from Peter Leven , thanks Peter. Fri Mar 27 17:46:16 1998 Mike Stump * 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 --------------