Make iterator_proxy_value a forward_iterator (#4371) (#4372)

* Make iteration_proxy_value model forward_iterator

* Amalgamate

* Suppress tidy warning
This commit is contained in:
Captain Crutches
2024-11-15 00:28:40 -08:00
committed by GitHub
parent 1825117e63
commit fde9a86c5a
3 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -171,7 +171,7 @@ TEST_CASE("README" * doctest::skip())
// find an entry
CHECK(o.find("foo") != o.end());
if (o.find("foo") != o.end())
if (o.find("foo") != o.end()) // NOLINT(readability-container-contains)
{
// there is an entry with key "foo"
}