mirror of
https://github.com/boostorg/unordered.git
synced 2025-07-30 19:37:14 +02:00
Silence conversion warning in foa table's emplace_impl()
This commit is contained in:
@ -974,7 +974,7 @@ private:
|
|||||||
return {it,false};
|
return {it,false};
|
||||||
}
|
}
|
||||||
else if(BOOST_UNLIKELY(size_>=ml)){
|
else if(BOOST_UNLIKELY(size_>=ml)){
|
||||||
unchecked_rehash(std::size_t(std::ceil((size_+1)/mlf)));
|
unchecked_rehash(std::size_t(std::ceil(static_cast<float>(size_+1)/mlf)));
|
||||||
pos0=position_for(hash);
|
pos0=position_for(hash);
|
||||||
}
|
}
|
||||||
return {
|
return {
|
||||||
|
Reference in New Issue
Block a user