STYLE: missing space in checkMesh (fixes #767)

This commit is contained in:
Robert
2018-04-03 09:40:04 +02:00
committed by Mark Olesen
parent b85b261348
commit 55d9eb206d

View File

@ -654,8 +654,8 @@ Foam::label Foam::checkTopology
{ {
Info<< " " Info<< " "
<< setw(20) << "CellZone" << setw(20) << "CellZone"
<< setw(9) << "Cells" << setw(13) << "Cells"
<< setw(9) << "Points" << setw(13) << "Points"
<< ' ' << "BoundingBox" <<endl; << ' ' << "BoundingBox" <<endl;
const cellList& cells = mesh.cells(); const cellList& cells = mesh.cells();
@ -686,8 +686,9 @@ Foam::label Foam::checkTopology
Info<< " " Info<< " "
<< setw(20) << cZone.name() << setw(20) << cZone.name()
<< setw(9) << returnReduce(cZone.size(), sumOp<label>()) << ' ' << setw(12)
<< setw(9) << returnReduce(cZone.size(), sumOp<label>())
<< ' ' << setw(12)
<< returnReduce(isZonePoint.count(), sumOp<label>()) << returnReduce(isZonePoint.count(), sumOp<label>())
<< ' ' << bb << endl; << ' ' << bb << endl;
} }