Skip to content

Commit

Permalink
...
Browse files Browse the repository at this point in the history
  • Loading branch information
JohanMabille committed Apr 5, 2024
1 parent 060f41e commit e5ee4a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/test_iterator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ namespace sparrow
TEST_CASE("make_pointer_iterator")
{
std::array<int, 3> a = { 2, 4, 6 };
auto iter = make_pointer_iterator(a.begin());
auto iter = make_pointer_iterator(&a[0]);
CHECK_EQ(*iter, a[0]);
++iter;
CHECK_EQ(*iter, a[1]);
Expand Down

0 comments on commit e5ee4a7

Please sign in to comment.