Commit 2a32969d by Jason Merrill Committed by Jason Merrill

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
parent 85b71cf2
Thu Sep 11 15:03:20 1997 Jason Merrill <jason@yorick.cygnus.com>
* std/bastring.h (class basic_string): Add global scope to
use of reverse_iterator.
Tue Sep 9 19:47:07 1997 Jason Merrill <jason@yorick.cygnus.com> Tue Sep 9 19:47:07 1997 Jason Merrill <jason@yorick.cygnus.com>
* std/bastring.h: Adjust use of reverse_iterator template. * std/bastring.h: Adjust use of reverse_iterator template.
......
...@@ -110,8 +110,8 @@ public: ...@@ -110,8 +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> reverse_iterator; typedef ::reverse_iterator<iterator> reverse_iterator;
typedef reverse_iterator<const_iterator> const_reverse_iterator; typedef ::reverse_iterator<const_iterator> 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