diff options
author | Phil Edwards <pme@gcc.gnu.org> | 2002-12-27 00:23:20 +0000 |
---|---|---|
committer | Phil Edwards <pme@gcc.gnu.org> | 2002-12-27 00:23:20 +0000 |
commit | bad38757c3332ef3e0158a6c1f8d5de0c03182f5 (patch) | |
tree | a7b523065633bed0a9eb4c77826a1787886f0c34 | |
parent | 3bbfb3d91dd6137f419c9d85ce7c75bb96e860b0 (diff) | |
download | gcc-bad38757c3332ef3e0158a6c1f8d5de0c03182f5.zip gcc-bad38757c3332ef3e0158a6c1f8d5de0c03182f5.tar.gz gcc-bad38757c3332ef3e0158a6c1f8d5de0c03182f5.tar.bz2 |
exception: Add comment (mistakenly skipped).
2002-12-26 Phil Edwards <pme@gcc.gnu.org>
* libsupc++/exception: Add comment (mistakenly skipped).
From-SVN: r60534
-rw-r--r-- | libstdc++-v3/ChangeLog | 4 | ||||
-rw-r--r-- | libstdc++-v3/libsupc++/exception | 4 |
2 files changed, 7 insertions, 1 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index f613267..c0112cf 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,5 +1,9 @@ 2002-12-26 Phil Edwards <pme@gcc.gnu.org> + * libsupc++/exception: Add comment (mistakenly skipped). + +2002-12-26 Phil Edwards <pme@gcc.gnu.org> + * include/std/std_bitset.h (_Base_bitset::_M_do_left_shift, _Base_bitset::_M_do_right_shift): Expect a non-zero shift. (bitset::operator<<=, bitset::operator>>=): When shifting more bits diff --git a/libstdc++-v3/libsupc++/exception b/libstdc++-v3/libsupc++/exception index d76a947..20dc05b 100644 --- a/libstdc++-v3/libsupc++/exception +++ b/libstdc++-v3/libsupc++/exception @@ -78,7 +78,7 @@ namespace std /// Takes a new handler function as an argument, returns the old function. terminate_handler set_terminate(terminate_handler) throw(); /** The runtime will call this function if %exception handling must be - * abandoned for any reason. */ + * abandoned for any reason. It can also be called by the user. */ void terminate() __attribute__ ((__noreturn__)); /// Takes a new handler function as an argument, returns the old function. @@ -109,6 +109,8 @@ namespace __gnu_cxx @endcode to use. For more info, see http://gcc.gnu.org/onlinedocs/libstdc++/19_diagnostics/howto.html#4 + + In 3.4 and later, this is on by default. */ void __verbose_terminate_handler (); } // namespace __gnu_cxx |