summaryrefslogtreecommitdiff
path: root/libstdc++/std
diff options
context:
space:
mode:
authorjason <jason@138bc75d-0d04-0410-961f-82ee72b054a4>1997-09-12 01:56:59 +0000
committerjason <jason@138bc75d-0d04-0410-961f-82ee72b054a4>1997-09-12 01:56:59 +0000
commitec8afe24e9514836390f6c265456ee90cfc617d4 (patch)
treee683f4474a0f50bc040debdcdecd388af363827d /libstdc++/std
parent7a52431f1d2ebe4a7bd700e3332a6b700b1e0d5b (diff)
downloadgcc-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.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: