Commit f264b054 authored by Dominik Charousset's avatar Dominik Charousset

Fix sign-compare warning

parent e663daa1
......@@ -104,7 +104,7 @@ struct fixture {
auto last = end(invoked);
auto i = find(first, last, true);
if (i != last) {
CAF_REQUIRE_EQUAL(count(i, last, true), 1u);
CAF_REQUIRE(count(i, last, true) == 1);
return distance(first, i);
}
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