projects
/
gcc.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
355e94a
)
back out unrelated patch to std:: qualify reverse_iterator
author
Martin v. Löwis
<loewis@gcc.gnu.org>
Wed, 15 Dec 1999 07:43:22 +0000
(07:43 +0000)
committer
Martin v. Löwis
<loewis@gcc.gnu.org>
Wed, 15 Dec 1999 07:43:22 +0000
(07:43 +0000)
From-SVN: r30940
libstdc++/std/bastring.h
patch
|
blob
|
history
diff --git
a/libstdc++/std/bastring.h
b/libstdc++/std/bastring.h
index bfa80bfc2e170f01c6db3c1a7ab931b11f9b617d..1fc89416f1c866624c774bc3a958acfd50a6e630 100644
(file)
--- 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: