Commit 12c8a83b authored by Dominik Charousset's avatar Dominik Charousset

Fix sign-compare warning

parent 09414b0f
...@@ -95,7 +95,7 @@ struct fixture { ...@@ -95,7 +95,7 @@ struct fixture {
auto last = end(invoked); auto last = end(invoked);
auto i = find(first, last, true); auto i = find(first, last, true);
if (i != last) { if (i != last) {
CAF_REQUIRE_EQUAL(count(i, last, true), 1u); CAF_REQUIRE(count(i, last, true) == 1);
return distance(first, i); return distance(first, i);
} }
return -1; return -1;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment