Fix unsigned/signed warning on macOS.
authorCarl Hetherington <cth@carlh.net>
Thu, 21 Apr 2022 14:18:45 +0000 (16:18 +0200)
committerCarl Hetherington <cth@carlh.net>
Thu, 21 Apr 2022 14:18:45 +0000 (16:18 +0200)
test/verify_test.cc

index 23b96c3252038e1a79f9346c3d8737e96dbe3c8e..370204e90a0ba8626f56a89150d9c572b57ed446 100644 (file)
@@ -353,7 +353,7 @@ BOOST_AUTO_TEST_CASE (verify_no_error)
        ++st;
        BOOST_REQUIRE (st == stages.end());
 
-       BOOST_CHECK_EQUAL (notes.size(), 0);
+       BOOST_CHECK_EQUAL (notes.size(), 0U);
 }