mirror of
https://github.com/boostorg/unordered.git
synced 2025-07-30 03:17:15 +02:00
Avoid -Wsign-conversion warning in mix_policy.cpp
This commit is contained in:
@ -11,7 +11,7 @@ template<class Policy, class SizeT> void test( SizeT x )
|
|||||||
{
|
{
|
||||||
if( x <= 4 )
|
if( x <= 4 )
|
||||||
{
|
{
|
||||||
BOOST_TEST_EQ( Policy::new_bucket_count( x ), 4 );
|
BOOST_TEST_EQ( Policy::new_bucket_count( x ), 4u );
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user