Commit f12bc7b5 by Jason Merrill Committed by Jason Merrill

* std/bastring.h: Adjust use of reverse_iterator template.

From-SVN: r15212
parent ff893307
Tue Sep 9 19:47:07 1997 Jason Merrill <jason@yorick.cygnus.com>
* std/bastring.h: Adjust use of reverse_iterator template.
Wed Aug 27 00:04:33 1997 Alexandre Oliva (oliva@dcc.unicamp.br) Wed Aug 27 00:04:33 1997 Alexandre Oliva (oliva@dcc.unicamp.br)
* Makefile.in: create correct multiple links to * Makefile.in: create correct multiple links to
......
...@@ -110,10 +110,8 @@ public: ...@@ -110,10 +110,8 @@ public:
typedef const charT* const_pointer; typedef const charT* const_pointer;
typedef pointer iterator; typedef pointer iterator;
typedef const_pointer const_iterator; typedef const_pointer const_iterator;
typedef reverse_iterator<iterator, value_type, typedef reverse_iterator<iterator> reverse_iterator;
reference, difference_type> reverse_iterator; typedef reverse_iterator<const_iterator> const_reverse_iterator;
typedef reverse_iterator<const_iterator, value_type, const_reference,
difference_type> const_reverse_iterator;
static const size_type npos = static_cast<size_type>(-1); static const size_type npos = static_cast<size_type>(-1);
private: private:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment