mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-03-26 02:30:30 +08:00
stdexcepti.cc (__out_of_range): Use std:: qualifier for names in std.
* stdexcepti.cc (__out_of_range): Use std:: qualifier for names in std. (__length_error): Likewise. From-SVN: r28117
This commit is contained in:
parent
e500a90e22
commit
3cda32a10b
@ -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.
|
||||
|
@ -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);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user