mirror of
https://github.com/boostorg/unordered.git
synced 2025-07-29 19:07:15 +02:00
fixed regression at unprotected_emplace
This commit is contained in:
@ -1090,7 +1090,7 @@ private:
|
||||
auto hash=this->hash_for(k);
|
||||
auto pos0=this->position_for(hash);
|
||||
|
||||
if(!this->find(k,pos0,hash))return false;
|
||||
if(this->find(k,pos0,hash))return false;
|
||||
|
||||
if(BOOST_LIKELY(this->size_<this->ml)){
|
||||
this->unchecked_emplace_at(pos0,hash,std::forward<Args>(args)...);
|
||||
|
Reference in New Issue
Block a user