diff --git a/arbor/util/range.hpp b/arbor/util/range.hpp index 13f80b095..d01ce3585 100644 --- a/arbor/util/range.hpp +++ b/arbor/util/range.hpp @@ -169,6 +169,7 @@ auto canonical_view(Seq&& s) { template 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)));