forked from boostorg/unordered
Add missing 'this->' for a couple of template dependant function calls.
[SVN r4256]
This commit is contained in:
@@ -1565,8 +1565,8 @@ namespace boost {
|
|||||||
// will be inserted at the end of the group.
|
// will be inserted at the end of the group.
|
||||||
|
|
||||||
local_iterator_base start(it.local_);
|
local_iterator_base start(it.local_);
|
||||||
while(prev_in_group(start.node_)->next_ == start.node_)
|
while(this->prev_in_group(start.node_)->next_ == start.node_)
|
||||||
start.node_ = prev_in_group(start.node_);
|
start.node_ = this->prev_in_group(start.node_);
|
||||||
|
|
||||||
// Create the node before rehashing in case it throws an
|
// Create the node before rehashing in case it throws an
|
||||||
// exception (need strong safety in such a case).
|
// exception (need strong safety in such a case).
|
||||||
|
Reference in New Issue
Block a user