Skip to content
Snippets Groups Projects
Commit 80782169 authored by Christoph Schwarzmeier's avatar Christoph Schwarzmeier
Browse files

Add forgotten incrementor in iterator macro

parent e8c5d952
No related merge requests found
......@@ -1851,7 +1851,7 @@
auto it5 = (f5)->beginXYZ(); \
auto it6 = (f6)->beginXYZ(); \
auto it7 = (f7)->beginXYZ(); \
for(/* see above */; it0 != (f0)->end(); ++it0, ++it1, ++it2, ++it3, ++it4, ++it5, ++it7) \
for(/* see above */; it0 != (f0)->end(); ++it0, ++it1, ++it2, ++it3, ++it4, ++it5, ++it6, ++it7) \
{ \
CODE \
} \
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment