diff options
author | loewis <loewis@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-12-15 07:43:22 +0000 |
---|---|---|
committer | loewis <loewis@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-12-15 07:43:22 +0000 |
commit | 8cc494fc0a9eeb5d4942bf2a242391cc905af5ab (patch) | |
tree | eef0f8c57e1f6887f6c65afddbce56fc08594438 /libstdc++ | |
parent | a55073df9f73d728cf69d74ca8fcf3fe99c8589d (diff) | |
download | gcc-8cc494fc0a9eeb5d4942bf2a242391cc905af5ab.tar.gz |
back out unrelated patch to std:: qualify reverse_iterator
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@30940 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libstdc++')
-rw-r--r-- | libstdc++/std/bastring.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libstdc++/std/bastring.h b/libstdc++/std/bastring.h index bfa80bfc2e1..1fc89416f1c 100644 --- a/libstdc++/std/bastring.h +++ b/libstdc++/std/bastring.h @@ -144,8 +144,8 @@ public: typedef const charT* const_pointer; typedef pointer iterator; typedef const_pointer const_iterator; - typedef std::reverse_iterator<iterator> reverse_iterator; - typedef std::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: |