diff options
author | jason <jason@138bc75d-0d04-0410-961f-82ee72b054a4> | 1997-09-12 01:56:59 +0000 |
---|---|---|
committer | jason <jason@138bc75d-0d04-0410-961f-82ee72b054a4> | 1997-09-12 01:56:59 +0000 |
commit | ec8afe24e9514836390f6c265456ee90cfc617d4 (patch) | |
tree | e683f4474a0f50bc040debdcdecd388af363827d /libstdc++/std | |
parent | 7a52431f1d2ebe4a7bd700e3332a6b700b1e0d5b (diff) | |
download | gcc-ec8afe24e9514836390f6c265456ee90cfc617d4.tar.gz |
* std/bastring.h (class basic_string): Add global scope to
use of reverse_iterator.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@15423 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libstdc++/std')
-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 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: |