summaryrefslogtreecommitdiff
path: root/contrib/libstdc++/std/bastring.h
diff options
context:
space:
mode:
authorDavid E. O'Brien <obrien@FreeBSD.org>2000-01-22 02:59:08 +0000
committerDavid E. O'Brien <obrien@FreeBSD.org>2000-01-22 02:59:08 +0000
commitaaaa7e3448ff28dbb3b303c09e079e07ec1786d5 (patch)
tree0e54f05f998e99b542abbbd129fea5973dc88539 /contrib/libstdc++/std/bastring.h
parent68a9f39184c8a72b08b621685741247dc5f365a7 (diff)
parentcbab3205286065bef3f77788d973d62378b6d6f0 (diff)
Notes
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 70891262e965..cd3793fffc04 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 Free Software Foundation
+// Copyright (C) 1994, 1995, 1999 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 (); }