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

Merge branch 'iteratorMacro_fix' into 'master'

Fix typo in iterator macros

See merge request walberla/walberla!169
parents 1a285161 93c9e246
Branches
Tags
No related merge requests found
...@@ -1682,7 +1682,7 @@ ...@@ -1682,7 +1682,7 @@
// Do not call this macro, call 'WALBERLA_FOR_ALL_CELLS_OMP' (using the same signature) instead // Do not call this macro, call 'WALBERLA_FOR_ALL_CELLS_OMP' (using the same signature) instead
#define WALBERLA_FOR_ALL_CELLS_OMP_4( it0, f0, omp, CODE ) \ #define WALBERLA_FOR_ALL_CELLS_OMP_4( it0, f0, omp, CODE ) \
{ WALBERLA_ASSERT_NOT_NULLPTR_1( (f0) ); \ { WALBERLA_ASSERT_NOT_NULLPTR_1( (f0) ); \
auto it0 = (f0)->beginXYZ() \ auto it0 = (f0)->beginXYZ(); \
for(/* see above */; it0 != (f0)->end(); ++it0) \ for(/* see above */; it0 != (f0)->end(); ++it0) \
{ \ { \
CODE \ 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