Skip to content
Snippets Groups Projects
Commit a1e8856b authored by Henry's avatar Henry
Browse files

UILList: Updated

parent 83de8117
Branches
Tags
No related merge requests found
...@@ -259,21 +259,21 @@ public: ...@@ -259,21 +259,21 @@ public:
// STL const_reverse_iterator // STL const_reverse_iterator
typedef typename LListBase::const_reverse_iterator
LListBase_const_reverse_iterator;
//- An STL-conforming const_reverse_iterator //- An STL-conforming const_reverse_iterator
class const_reverse_iterator class const_reverse_iterator
: :
public LListBase_const_reverse_iterator public LListBase::const_reverse_iterator
{ {
public: public:
//- Construct from base const_reverse_iterator //- Construct from base const_reverse_iterator
const_reverse_iterator(LListBase_const_reverse_iterator baseIter) const_reverse_iterator
(
typename LListBase::const_reverse_iterator baseIter
)
: :
LListBase_const_reverse_iterator(baseIter) LListBase::const_reverse_iterator(baseIter)
{} {}
...@@ -283,7 +283,7 @@ public: ...@@ -283,7 +283,7 @@ public:
{ {
return return
static_cast<const T&> static_cast<const T&>
(LListBase_const_reverse_iterator::operator*()); (LListBase::const_reverse_iterator::operator*());
} }
const T& operator()() const T& operator()()
...@@ -293,7 +293,7 @@ public: ...@@ -293,7 +293,7 @@ public:
const_reverse_iterator& operator++() const_reverse_iterator& operator++()
{ {
LListBase_const_reverse_iterator::operator++(); LListBase::const_reverse_iterator::operator++();
return *this; return *this;
} }
}; };
......
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