mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
STYLE: missing space in checkMesh (fixes #767)
This commit is contained in:
@ -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;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user