Fix build on Mac

This commit is contained in:
tamasmeszaros 2023-10-02 12:48:23 +02:00
parent 82a7ff7f4e
commit 4025a55c4f

View File

@ -61,7 +61,7 @@ TEST_CASE("StaticMap should derive it's type using make_staticmap", "[StaticMap]
for (auto &[k, v] : ciManyMap) {
auto val = query(ciManyMap, k);
REQUIRE(val.has_value());
REQUIRE(val.value() == v);
REQUIRE(*val == v);
}
}