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