forked from boostorg/unordered
fixed incomplete porting of PR187
This commit is contained in:
committed by
Christian Mazakas
parent
ccbc639677
commit
a5100a9d35
@ -261,7 +261,8 @@ public:
|
|||||||
iterator begin()noexcept
|
iterator begin()noexcept
|
||||||
{
|
{
|
||||||
iterator it{this->arrays.groups,0,this->arrays.elements};
|
iterator it{this->arrays.groups,0,this->arrays.elements};
|
||||||
if(!(this->arrays.groups[0].match_occupied()&0x1))++it;
|
if(this->arrays.elements&&
|
||||||
|
!(this->arrays.groups[0].match_occupied()&0x1))++it;
|
||||||
return it;
|
return it;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user