summaryrefslogtreecommitdiff
path: root/libstdc++
diff options
context:
space:
mode:
Diffstat (limited to 'libstdc++')
-rw-r--r--libstdc++/ChangeLog6
-rw-r--r--libstdc++/stdexcepti.cc4
2 files changed, 8 insertions, 2 deletions
diff --git a/libstdc++/ChangeLog b/libstdc++/ChangeLog
index bf542b09210..61a45ac21d5 100644
--- a/libstdc++/ChangeLog
+++ b/libstdc++/ChangeLog
@@ -1,3 +1,9 @@
+1999-07-16 Markus Gyger (mgyger@gmu.edu)
+
+ * stdexcepti.cc (__out_of_range): Use std:: qualifier for names
+ in std.
+ (__length_error): Likewise.
+
Fri Jul 9 01:20:23 1999 Jeffrey A Law (law@cygnus.com)
* Makefile.in (VERSION): Bump to 2.10.0.
diff --git a/libstdc++/stdexcepti.cc b/libstdc++/stdexcepti.cc
index 3b03acd63f4..9c02c71f497 100644
--- a/libstdc++/stdexcepti.cc
+++ b/libstdc++/stdexcepti.cc
@@ -12,10 +12,10 @@
void
__out_of_range (const char *s)
{
- throw out_of_range (s);
+ throw std::out_of_range (s);
}
void __length_error (const char *s)
{
- throw length_error (s);
+ throw std::length_error (s);
}