Skip to content
This repository has been archived by the owner on Jun 21, 2024. It is now read-only.

Commit

Permalink
Linux: fixed compile issue
Browse files Browse the repository at this point in the history
  • Loading branch information
xLAva committed Sep 17, 2017
1 parent 2676b9a commit 5d601e6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions code/Ratl/map_vs.h
Original file line number Diff line number Diff line change
Expand Up @@ -1100,15 +1100,15 @@ class set_base : public tree_base<T,IS_MULTI>
////////////////////////////////////////////////////////////////////////////////////
const_iterator begin() const
{
return this->const_iterator(this, this->front());
return const_iterator(this, this->front());
}

////////////////////////////////////////////////////////////////////////////////////
// Get An const_iterator To The Largest Element - O(log n)
////////////////////////////////////////////////////////////////////////////////////
const_iterator rbegin() const
{
return this->const_iterator(this, this->back());
return const_iterator(this, this->back());
}

////////////////////////////////////////////////////////////////////////////////////
Expand Down

0 comments on commit 5d601e6

Please sign in to comment.