stdexcepti.cc (__out_of_range): Use std:: qualifier for names in std.
authorMarkus Gyger <mgyger@gmu.edu>
Fri, 16 Jul 1999 07:07:45 +0000 (07:07 +0000)
committerMark Mitchell <mmitchel@gcc.gnu.org>
Fri, 16 Jul 1999 07:07:45 +0000 (07:07 +0000)
* stdexcepti.cc (__out_of_range): Use std:: qualifier for names
in std.
(__length_error): Likewise.

From-SVN: r28117

libstdc++/ChangeLog
libstdc++/stdexcepti.cc

index bf542b09210fe98b7926892c026169fc6cebbb27..61a45ac21d5a46f6b3e8afb97910c31f06f3ad01 100644 (file)
@@ -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.
index 3b03acd63f44c5a6b2e10129a4ca0444c4bbf92b..9c02c71f4976071b5b16e958aaf9236e150e9988 100644 (file)
 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);
 }