diff options
author | Jason Merrill <jason@yorick.cygnus.com> | 1997-09-12 01:56:59 +0000 |
---|---|---|
committer | Jason Merrill <jason@gcc.gnu.org> | 1997-09-11 21:56:59 -0400 |
commit | 2a32969dd44ff7af5b911a9db5edde3066d1c53a (patch) | |
tree | e683f4474a0f50bc040debdcdecd388af363827d /libstdc++/std | |
parent | 85b71cf211b1ba45602a7aa210570173387f46bc (diff) | |
download | gcc-2a32969dd44ff7af5b911a9db5edde3066d1c53a.zip gcc-2a32969dd44ff7af5b911a9db5edde3066d1c53a.tar.gz gcc-2a32969dd44ff7af5b911a9db5edde3066d1c53a.tar.bz2 |
bastring.h (class basic_string): Add global scope to use of reverse_iterator.
* std/bastring.h (class basic_string): Add global scope to
use of reverse_iterator.
From-SVN: r15423
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 5ca371e..9070a2e 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: |