aboutsummaryrefslogtreecommitdiff
path: root/libstdc++/std
diff options
context:
space:
mode:
authorJason Merrill <jason@yorick.cygnus.com>1997-09-12 01:56:59 +0000
committerJason Merrill <jason@yorick.cygnus.com>1997-09-12 01:56:59 +0000
commitec118e767a61053326735ae16a68df6fc16dc81d (patch)
treee683f4474a0f50bc040debdcdecd388af363827d /libstdc++/std
parent429a6d8c420b78aaef0741746e9e246343bf106d (diff)
* std/bastring.h (class basic_string): Add global scope to
use of reverse_iterator. git-svn-id: https://gcc.gnu.org/svn/gcc/trunk@15423 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libstdc++/std')
-rw-r--r--libstdc++/std/bastring.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libstdc++/std/bastring.h b/libstdc++/std/bastring.h
index 5ca371ed6a6..9070a2e857d 100644
--- a/libstdc++/std/bastring.h
+++ b/libstdc++/std/bastring.h
@@ -110,8 +110,8 @@ public:
typedef const charT* const_pointer;
typedef pointer iterator;
typedef const_pointer const_iterator;
- typedef reverse_iterator<iterator> reverse_iterator;
- typedef reverse_iterator<const_iterator> const_reverse_iterator;
+ typedef ::reverse_iterator<iterator> reverse_iterator;
+ typedef ::reverse_iterator<const_iterator> const_reverse_iterator;
static const size_type npos = static_cast<size_type>(-1);
private: