Remove __HONOR_STD
authorMartin v. Löwis <loewis@informatik.hu-berlin.de>
Tue, 25 Aug 1998 02:08:49 +0000 (02:08 +0000)
committerMartin v. Löwis <loewis@gcc.gnu.org>
Tue, 25 Aug 1998 02:08:49 +0000 (02:08 +0000)
From-SVN: r21960

libstdc++/ChangeLog
libstdc++/stdexcept

index 2cb0d0a9255401b0ec0644f75f841c40b67b715a..df27af30bf1705ef3487e2ad14a0719b36efce95 100644 (file)
@@ -1,3 +1,7 @@
+1998-08-25  Martin von Löwis  <loewis@informatik.hu-berlin.de>
+
+       * stdexcept: Remove __HONOR_STD.
+
 1998-08-23  Mark Mitchell  <mark@markmitchell.com>
 
        * sinst.cc: Don't explicitly instantiation string_char_traits<char>.
index c0ac87fbf00e6efd159e12b3a85d6c93a69b13b3..69e9627d5778d858bddb62f195f633e61a7cdd66 100644 (file)
@@ -37,9 +37,7 @@
 
 extern "C++" {
 
-#ifdef __HONOR_STD
 namespace std {
-#endif
 
 class logic_error : public exception {
   string _what;
@@ -92,9 +90,7 @@ public:
   underflow_error (const string& what_arg): runtime_error (what_arg) { }
 };
 
-#ifdef __HONOR_STD
 } // namespace std
-#endif
  
 } // extern "C++"