STYLE: flush newline in blockMesh feedback

This commit is contained in:
Mark Olesen
2019-12-11 09:43:47 +01:00
parent bc51349d75
commit d1d567a90f
2 changed files with 8 additions and 5 deletions

View File

@ -54,7 +54,7 @@ void Foam::blockMesh::calcMergeInfo()
if (verboseOutput)
{
Info<< "Creating merge list " << flush;
Info<< "Creating merge list.." << flush;
}
// set unused to -1
@ -408,7 +408,7 @@ void Foam::blockMesh::calcMergeInfo()
}
if (verboseOutput)
{
Info<< "." << flush;
Info<< '.' << flush;
}
if (nPasses > 100)

View File

@ -328,8 +328,7 @@ void Foam::blockMesh::calcMergeInfoFast()
if (verboseOutput)
{
Info<< "Creating merge list using the fast topological search"
<< flush;
Info<< "Creating merge list with fast topological search.." << flush;
}
// Size merge list and initialize to -1
@ -550,7 +549,7 @@ void Foam::blockMesh::calcMergeInfoFast()
if (verboseOutput)
{
Info<< "." << flush;
Info<< '.' << flush;
}
if (nPasses > 100)
@ -562,6 +561,10 @@ void Foam::blockMesh::calcMergeInfoFast()
} while (changedPointMerge);
if (verboseOutput)
{
Info<< endl;
}
// Sort merge list and count number of unique points
label nUniqPoints = 0;