fix unintended implicit cast from unsigned to signed
This commit is contained in:
parent
6bbd7c0c0b
commit
b6eea9a880
@ -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();
|
||||
}
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user