fix unintended implicit cast from unsigned to signed

This commit is contained in:
Dennis Luxen 2015-01-05 14:38:24 +01:00
parent 6bbd7c0c0b
commit b6eea9a880

View File

@ -78,7 +78,7 @@ struct QueryNode
break;
}
BOOST_ASSERT_MSG(false, "should not happen");
return std::numeric_limits<unsigned>::max();
return std::numeric_limits<int>::lowest();
}
};