Skip to content

Commit

Permalink
clang-format 16
Browse files Browse the repository at this point in the history
  • Loading branch information
julien-tierny committed Sep 12, 2023
1 parent 8abd04b commit 6492cf3
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions core/base/implicitTriangulation/ImplicitTriangulation.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3155,11 +3155,9 @@ int ttk::ImplicitTriangulation::preconditionDistributedCells() {
localBBox_z_max{this->localGridOffset_[2]};

#ifdef TTK_ENABLE_OPENMP
#pragma omp parallel for reduction( \
min \
: localBBox_x_min, localBBox_y_min, localBBox_z_min) \
reduction(max \
: localBBox_x_max, localBBox_y_max, localBBox_z_max)
#pragma omp parallel for reduction( \
min : localBBox_x_min, localBBox_y_min, localBBox_z_min) \
reduction(max : localBBox_x_max, localBBox_y_max, localBBox_z_max)
#endif
for(SimplexId lcid = 0; lcid < nLocCells; ++lcid) {
// only keep non-ghost cells
Expand Down

0 comments on commit 6492cf3

Please sign in to comment.