exception (bad_exception): Add comment.
authorPaolo Carlini <pcarlini@unitus.it>
Wed, 9 Jan 2002 23:31:57 +0000 (00:31 +0100)
committerPaolo Carlini <paolo@gcc.gnu.org>
Wed, 9 Jan 2002 23:31:57 +0000 (23:31 +0000)
2002-01-09  Paolo Carlini <pcarlini@unitus.it>

        * libsupc++/exception (bad_exception): Add comment.
        * libsupc++/new (bad_alloc): Same.
        * libsupc++/typeinfo (bad_cast): Same.
        (bad_typeid): Same.

From-SVN: r48700

libstdc++-v3/ChangeLog
libstdc++-v3/libsupc++/exception
libstdc++-v3/libsupc++/new
libstdc++-v3/libsupc++/typeinfo

index da64dcb1c5ba1270c47c627401e6c3fde14fd995..994029d7f24777c19d143ca1ca8681de6ab871f0 100644 (file)
@@ -1,3 +1,9 @@
+2002-01-09  Paolo Carlini <pcarlini@unitus.it>
+
+        * libsupc++/exception (bad_exception): Add comment.
+        * libsupc++/new (bad_alloc): Same.
+        * libsupc++/typeinfo (bad_cast, bad_typeid): Same.
+
 2002-01-09  Paolo Carlini <pcarlini@unitus.it>
 
        libstdc++/3150: revert 2001-11-30 commit. DR266 only means
index aea61ffa412e73d5a1a965cab024024b3c37c31b..4b272d53bec51fb59ba9d2122d7f9c1e91c6cd0c 100644 (file)
@@ -63,6 +63,8 @@ namespace std
   {
   public:
     bad_exception() throw() { }
+    // This declaration is not useless:
+    // http://gcc.gnu.org/onlinedocs/gcc-3.0.2/gcc_6.html#SEC118
     virtual ~bad_exception() throw();
   };
 
index 358aa1d12c12ff84ee6d8bbcb1c0bede0ce51858..da1a36f599701b1fc8dde89544d2a2811588c452 100644 (file)
@@ -51,6 +51,8 @@ namespace std
   {
   public:
     bad_alloc() throw() { }
+    // This declaration is not useless:
+    // http://gcc.gnu.org/onlinedocs/gcc-3.0.2/gcc_6.html#SEC118
     virtual ~bad_alloc() throw();
   };
 
index 336fcc058d980979fd31cc6e8396d70ca70326b1..c36984cf8f3b40eb1129dabe1d8e365f994d5e81 100644 (file)
@@ -130,6 +130,8 @@ namespace std
   {
   public:
     bad_cast() throw() { }
+    // This declaration is not useless:
+    // http://gcc.gnu.org/onlinedocs/gcc-3.0.2/gcc_6.html#SEC118
     virtual ~bad_cast() throw();
   };
   
@@ -138,6 +140,8 @@ namespace std
   {
   public:
     bad_typeid () throw() { }
+    // This declaration is not useless:
+    // http://gcc.gnu.org/onlinedocs/gcc-3.0.2/gcc_6.html#SEC118
     virtual ~bad_typeid() throw();
   };
 } // namespace std