Skip to content

Commit

Permalink
revert in non hacked branch
Browse files Browse the repository at this point in the history
  • Loading branch information
DerThorsten committed Jul 1, 2024
1 parent 063eee3 commit 4d9a9d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/sparrow/typed_array.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -483,7 +483,7 @@ namespace sparrow
}
return true;
#else
return std::equal(ta1.begin(), ta1.end(), ta2.begin(), ta2.end());
return std::equal(ta1.cbegin(), ta1.cend(), ta2.cbegin(), ta2.cend());
#endif
}

Expand Down

0 comments on commit 4d9a9d2

Please sign in to comment.