diff options
| author | Carl Hetherington <cth@carlh.net> | 2022-04-22 11:08:54 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2022-04-22 12:22:44 +0200 |
| commit | ed1f39dc5664d642f0f5af1a606e2e7aebd5e5f4 (patch) | |
| tree | 6d77fdb25e8f80f7dd61c343997028727ec67f65 /test/rgb_xyz_test.cc | |
| parent | 6ffa60433c4d6ce4ccee31e1f2459b0dd0758c00 (diff) | |
Fix some macOS signed/unsigned warnings.
Diffstat (limited to 'test/rgb_xyz_test.cc')
| -rw-r--r-- | test/rgb_xyz_test.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/rgb_xyz_test.cc b/test/rgb_xyz_test.cc index 69a4d612..3e359c0c 100644 --- a/test/rgb_xyz_test.cc +++ b/test/rgb_xyz_test.cc @@ -156,7 +156,7 @@ BOOST_AUTO_TEST_CASE (xyz_rgb_range_test) ); /* The 6 out-of-range samples should have been noted */ - BOOST_REQUIRE_EQUAL (notes.size(), 6); + BOOST_REQUIRE_EQUAL (notes.size(), 6U); auto i = notes.begin (); BOOST_REQUIRE_EQUAL (*i++, "XYZ value -4 out of range"); BOOST_REQUIRE_EQUAL (*i++, "XYZ value -4 out of range"); |
