Suppress signedness comparison warnings in tests

This commit is contained in:
Alessandro Di Federico
2018-01-28 14:08:45 +01:00
parent 2f55d4ba76
commit bbd3471266
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -170,5 +170,5 @@ BOOST_AUTO_TEST_CASE(TestASSlot) {
// Test usage in a map
std::map<ASSlot, int> Map;
Map[SP1Slot] = 0;
BOOST_TEST(Map.count(SP1Slot) != 0);
BOOST_TEST(Map.count(SP1Slot) != 0U);
}