aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin v. Löwis <loewis@gcc.gnu.org>1999-12-15 07:43:22 +0000
committerMartin v. Löwis <loewis@gcc.gnu.org>1999-12-15 07:43:22 +0000
commit035f4506b19362a8ccb21bf8377c8c8715d1d03f (patch)
treeeef0f8c57e1f6887f6c65afddbce56fc08594438
parent355e94aaeb469d9012bd71ef7cbd9654a9e58169 (diff)
downloadgcc-035f4506b19362a8ccb21bf8377c8c8715d1d03f.zip
gcc-035f4506b19362a8ccb21bf8377c8c8715d1d03f.tar.gz
gcc-035f4506b19362a8ccb21bf8377c8c8715d1d03f.tar.bz2
back out unrelated patch to std:: qualify reverse_iterator
From-SVN: r30940
-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 bfa80bf..1fc8941 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: