Commit ded4bb8e authored by Jakub Klinkovský's avatar Jakub Klinkovský
Browse files

Fixed bug in 3D grid traverser

parent bb6342a0
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -500,7 +500,7 @@ processEntities(
#ifdef HAVE_OPENMP
#pragma omp for
#endif
         for( IndexType z = begin.y(); z <= end.y(); z ++ )
         for( IndexType z = begin.z(); z <= end.z(); z ++ )
            for( IndexType y = begin.y(); y <= end.y(); y ++ )
               for( IndexType x = begin.x(); x <= end.x(); x ++ )
               {