Skip to content

Commit

Permalink
Update arbor/util/range.hpp
Browse files Browse the repository at this point in the history
Co-authored-by: boeschf <[email protected]>
  • Loading branch information
thorstenhater and boeschf authored Oct 22, 2024
1 parent ddb6002 commit b723aac
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions arbor/util/range.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,7 @@ auto canonical_view(Seq&& s) {
template <typename Seq>
auto strict_view(Seq&& s) {
using std::begin;
using std::end;
auto b = begin(s);
auto e = end(s);
return make_range(b, b==e? b: std::next(util::upto(b, e)));
Expand Down

0 comments on commit b723aac

Please sign in to comment.