Skip to content

Commit 1df0ea1

Browse files
committed
Work around syntax check.
1 parent 4366d5c commit 1df0ea1

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

Common/src/geometry/CPhysicalGeometry.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10576,11 +10576,11 @@ void CPhysicalGeometry::SetWallDistance(CADTElemClass* WallADT, const CConfig* c
1057610576
distance for all nodes. ---*/
1057710577

1057810578
SU2_OMP_PARALLEL {
10579-
#ifdef __SANITIZE_THREAD__
10580-
SU2_OMP_FOR_()
10581-
#else
10582-
SU2_OMP_FOR_DYN(roundUpDiv(nPoint, 2 * omp_get_max_threads()))
10579+
SU2_OMP_FOR_(
10580+
#ifndef __SANITIZE_THREAD__
10581+
schedule(dynamic, roundUpDiv(nPoint, 2 * omp_get_max_threads()))
1058310582
#endif
10583+
)
1058410584
for (unsigned long iPoint = 0; iPoint < GetnPoint(); ++iPoint) {
1058510585
unsigned short markerID;
1058610586
unsigned long elemID;

0 commit comments

Comments
 (0)