Apply coding style recommendations:

- space between keyword and bracket in 'for(..)', 'if(..)', 'while(..)'
This commit is contained in:
Mark Olesen
2009-11-30 08:55:03 +01:00
parent 6bdb7fb7b5
commit 909e6b27e4
148 changed files with 343 additions and 342 deletions

View File

@ -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();