diff options
author | kan <kan@FreeBSD.org> | 2003-07-11 03:42:04 +0000 |
---|---|---|
committer | kan <kan@FreeBSD.org> | 2003-07-11 03:42:04 +0000 |
commit | c7bbbdd036d3dd7ae253fb13c9994215af06f073 (patch) | |
tree | ce14546aca3a67fa3440aed52f132bafaf68fe70 /contrib/libstdc++/libsupc++/exception | |
parent | b2a8872fbe1ec1c49094559ac7b78e6ea4ab7180 (diff) | |
download | FreeBSD-src-c7bbbdd036d3dd7ae253fb13c9994215af06f073.zip FreeBSD-src-c7bbbdd036d3dd7ae253fb13c9994215af06f073.tar.gz |
Gcc 3.3.1-pre 2003-07-11 C++ support bits.
Diffstat (limited to 'contrib/libstdc++/libsupc++/exception')
-rw-r--r-- | contrib/libstdc++/libsupc++/exception | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/contrib/libstdc++/libsupc++/exception b/contrib/libstdc++/libsupc++/exception index b26cb6d..d76a947 100644 --- a/contrib/libstdc++/libsupc++/exception +++ b/contrib/libstdc++/libsupc++/exception @@ -41,11 +41,13 @@ extern "C++" { namespace std { - /** This is the base class for all exceptions thrown by the standard + /** + * @brief Base class for all library exceptions. + * + * This is the base class for all exceptions thrown by the standard * library, and by certain language expressions. You are free to derive * your own %exception classes, or use a different hierarchy, or to * throw non-class data (e.g., fundamental types). - * @brief Base class for all library exceptions. */ class exception { |