OSDN Git Service

Remove __HONOR_STD
authorloewis <loewis@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 25 Aug 1998 02:08:49 +0000 (02:08 +0000)
committerloewis <loewis@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 25 Aug 1998 02:08:49 +0000 (02:08 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@21960 138bc75d-0d04-0410-961f-82ee72b054a4

libstdc++/ChangeLog
libstdc++/stdexcept

index 2cb0d0a..df27af3 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 c0ac87f..69e9627 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++"