summaryrefslogtreecommitdiff
path: root/contrib/libstdc++/std/bastring.h
diff options
context:
space:
mode:
authorcvs2svn <cvs2svn@FreeBSD.org>2000-03-27 03:00:06 +0000
committercvs2svn <cvs2svn@FreeBSD.org>2000-03-27 03:00:06 +0000
commit3e26bdf09c5e0a4e9b015a5f02b9c948454010e1 (patch)
tree36f3f9a09138cd7071d3de64269ad734e9d9c50b /contrib/libstdc++/std/bastring.h
parent536abd52d2bd3b3830d8ac369f03865f32e4d496 (diff)
Diffstat (limited to 'contrib/libstdc++/std/bastring.h')
-rw-r--r--contrib/libstdc++/std/bastring.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/contrib/libstdc++/std/bastring.h b/contrib/libstdc++/std/bastring.h
index cd3793fffc046..70891262e9650 100644
--- a/contrib/libstdc++/std/bastring.h
+++ b/contrib/libstdc++/std/bastring.h
@@ -1,5 +1,5 @@
// Main templates for the -*- C++ -*- string classes.
-// Copyright (C) 1994, 1995, 1999 Free Software Foundation
+// Copyright (C) 1994, 1995 Free Software Foundation
// This file is part of the GNU ANSI C++ Library. This library is free
// software; you can redistribute it and/or modify it under the
@@ -180,11 +180,11 @@ public:
: dat (nilRep.grab ()) { assign (n, c); }
#ifdef __STL_MEMBER_TEMPLATES
template<class InputIterator>
- basic_string(InputIterator __begin, InputIterator __end)
+ basic_string(InputIterator begin, InputIterator end)
#else
- basic_string(const_iterator __begin, const_iterator __end)
+ basic_string(const_iterator begin, const_iterator end)
#endif
- : dat (nilRep.grab ()) { assign (__begin, __end); }
+ : dat (nilRep.grab ()) { assign (begin, end); }
~basic_string ()
{ rep ()->release (); }