This commit is contained in:
Robert Beckebans 2022-09-17 08:12:31 +02:00
parent e0d178b14d
commit 5c01fb206e

View file

@ -223,13 +223,13 @@ public:
auto begin() const // const version
{
return Iterator<_type_>{list};
return Iterator<_type_> {list};
};
auto end() const // const version
{
return Iterator<_type_>{list + Num( )};
return Iterator<_type_> {list + Num()};
};
/*
// Begin/End methods for range-based for loops.