Formatting

This commit is contained in:
Hrvoje Jasak 2015-04-07 15:00:04 +01:00 committed by Dominik Christ
parent 4f9192010c
commit d902dcd231

View file

@ -349,7 +349,9 @@ int main(int argc, char *argv[])
// Select all cells
refCells.setSize(mesh.nCells());
forAll(mesh.cells(), cellI)
const cellList& c = mesh.cells();
forAll (c, cellI)
{
refCells[cellI] = cellI;
}
@ -482,7 +484,6 @@ int main(int argc, char *argv[])
+ " to cells in mesh at "
+ oldTimeName;
forAll (oldToNew, oldCellI)
{
const labelList& added = oldToNew[oldCellI];
@ -506,7 +507,6 @@ int main(int argc, char *argv[])
newToOld.write();
// Some statistics.
printEdgeStats(mesh);