aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin v. Löwis <loewis@informatik.hu-berlin.de>1998-08-25 02:08:49 +0000
committerMartin v. Löwis <loewis@gcc.gnu.org>1998-08-25 02:08:49 +0000
commit00045f52758be5d18a71697c20a00d0d0ae4753e (patch)
treee41aa856ec8673e1b5618f59b565d314adc81b04
parent9a224b4a31946f5664d8af9a86ea2393163b91f7 (diff)
downloadgcc-00045f52758be5d18a71697c20a00d0d0ae4753e.zip
gcc-00045f52758be5d18a71697c20a00d0d0ae4753e.tar.gz
gcc-00045f52758be5d18a71697c20a00d0d0ae4753e.tar.bz2
Remove __HONOR_STD
From-SVN: r21960
-rw-r--r--libstdc++/ChangeLog4
-rw-r--r--libstdc++/stdexcept4
2 files changed, 4 insertions, 4 deletions
diff --git a/libstdc++/ChangeLog b/libstdc++/ChangeLog
index 2cb0d0a..df27af3 100644
--- a/libstdc++/ChangeLog
+++ b/libstdc++/ChangeLog
@@ -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>.
diff --git a/libstdc++/stdexcept b/libstdc++/stdexcept
index c0ac87f..69e9627 100644
--- a/libstdc++/stdexcept
+++ b/libstdc++/stdexcept
@@ -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++"