Skip to content

Commit

Permalink
fix more typos
Browse files Browse the repository at this point in the history
  • Loading branch information
m-fila committed Dec 16, 2024
1 parent e14cae4 commit 10fe994
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/unittests/std_interoperability.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -571,14 +571,14 @@ TEST_CASE("Collection and iterator concepts", "[collection][container][iterator]
// const_iterator
DOCUMENTED_STATIC_FAILURE(std::forward_iterator<const_iterator>);
// {
// REQUIRE(iterator{} == iterator{});
// REQUIRE(const_iterator{} == const_iterator{});
// auto coll = CollectionType();
// coll.create();
// auto i = coll.begin();
// auto j = coll.begin();
// auto i = coll.cbegin();
// auto j = coll.cbegin();
// REQUIRE(i == j);
// REQUIRE(++i == ++j);
// i = coll.begin();
// i = coll.cbegin();
// REQUIRE(((void)[](auto x) { ++x; }(i), *i) == *i);
// Pointers and references obtained from a forward iterator into a range remain valid while the range exists.
// Is this even unit-testable?
Expand Down

0 comments on commit 10fe994

Please sign in to comment.