From 5c01fb206e0ccb24b43e403f65d4ac8876f24f31 Mon Sep 17 00:00:00 2001 From: Robert Beckebans Date: Sat, 17 Sep 2022 08:12:31 +0200 Subject: [PATCH] Astyle --- neo/idlib/containers/List.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/neo/idlib/containers/List.h b/neo/idlib/containers/List.h index 9b2f0013..cf7951bb 100644 --- a/neo/idlib/containers/List.h +++ b/neo/idlib/containers/List.h @@ -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.