]> gcc.gnu.org Git - gcc.git/blobdiff - libstdc++-v3/libsupc++/exception
new: Remove pragma interface.
[gcc.git] / libstdc++-v3 / libsupc++ / exception
index fac73fb05662414d2efe18a59c983ac6919f93b1..3676a7314816ce7a6fdceb47abdd4614f0f876ed 100644 (file)
@@ -31,8 +31,6 @@
 #ifndef __EXCEPTION__
 #define __EXCEPTION__
 
-#pragma interface "exception"
-
 extern "C++" {
 
 namespace std 
@@ -41,7 +39,7 @@ namespace std
   {
   public:
     exception() throw() { }
-    virtual ~exception() throw() { }
+    virtual ~exception() throw();
     virtual const char* what() const throw();
   };
 
@@ -49,7 +47,7 @@ namespace std
   {
   public:
     bad_exception() throw() { }
-    virtual ~bad_exception() throw() { }
+    virtual ~bad_exception() throw();
   };
 
   typedef void (*terminate_handler) ();
This page took 0.027936 seconds and 5 git commands to generate.