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

Merge branch 'iteratorMacro_fix' into 'master'

Add forgotten incrementor in iterator macro

See merge request walberla/walberla!171
parents e8c5d952 80782169
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