mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
Apply coding style recommendations:
- space between keyword and bracket in 'for(..)', 'if(..)', 'while(..)'
This commit is contained in:
@ -791,7 +791,7 @@ Foam::label Foam::meshSearch::findCell
|
||||
+ offset(curHit.hitPoint(), curHit.index(), edgeVec);
|
||||
}
|
||||
}
|
||||
while(true);
|
||||
while (true);
|
||||
}
|
||||
else
|
||||
{
|
||||
@ -928,7 +928,7 @@ Foam::List<Foam::pointIndexHit> Foam::meshSearch::intersections
|
||||
+ offset(bHit.hitPoint(), bHit.index(), edgeVec);
|
||||
}
|
||||
|
||||
} while(bHit.hit());
|
||||
} while (bHit.hit());
|
||||
|
||||
|
||||
hits.shrink();
|
||||
|
||||
Reference in New Issue
Block a user