fix unintended implicit cast from unsigned to signed
This commit is contained in:
parent
6bbd7c0c0b
commit
b6eea9a880
@ -78,7 +78,7 @@ struct QueryNode
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
BOOST_ASSERT_MSG(false, "should not happen");
|
BOOST_ASSERT_MSG(false, "should not happen");
|
||||||
return std::numeric_limits<unsigned>::max();
|
return std::numeric_limits<int>::lowest();
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user