mirror of
https://github.com/id-Software/DOOM-3-BFG.git
synced 2025-03-14 22:50:45 +00:00
Astyle
This commit is contained in:
parent
e0d178b14d
commit
5c01fb206e
1 changed files with 3 additions and 3 deletions
|
@ -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.
|
||||
|
|
Loading…
Reference in a new issue