forked from boostorg/unordered
Fix cast warning in mark_overflow()
This commit is contained in:
@ -118,7 +118,7 @@ struct group15
|
||||
|
||||
inline void mark_overflow(std::size_t hash)
|
||||
{
|
||||
overflow()|=1<<(hash%8);
|
||||
overflow()|=static_cast<unsigned char>(1<<(hash%8));
|
||||
}
|
||||
|
||||
inline int match_available()const
|
||||
|
Reference in New Issue
Block a user