mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
coding style adherence
- markup codingStyleGuide.org examples so they actually indent correctly - use 'Info<<' as per codingStyleGuide instead of 'Info <<'
This commit is contained in:
@ -117,7 +117,7 @@ int main(int argc, char *argv[])
|
||||
|
||||
if (markedPoints.size())
|
||||
{
|
||||
Info << "Found " << markedPoints.size() << " marked point(s)." << endl;
|
||||
Info<< "Found " << markedPoints.size() << " marked point(s)." << endl;
|
||||
|
||||
// pick up cells sharing the point
|
||||
|
||||
@ -155,7 +155,7 @@ int main(int argc, char *argv[])
|
||||
|
||||
if (markedEdges.size())
|
||||
{
|
||||
Info << "Found " << markedEdges.size() << " marked edge(s)." << endl;
|
||||
Info<< "Found " << markedEdges.size() << " marked edge(s)." << endl;
|
||||
|
||||
// pick up cells sharing the edge
|
||||
|
||||
@ -194,7 +194,7 @@ int main(int argc, char *argv[])
|
||||
const point& min = markedZone[0];
|
||||
const point& max = markedZone[1];
|
||||
|
||||
Info << "Using zone min:" << min << " max:" << max << endl;
|
||||
Info<< "Using zone min:" << min << " max:" << max << endl;
|
||||
|
||||
forAll(surf1, faceI)
|
||||
{
|
||||
@ -295,7 +295,7 @@ int main(int argc, char *argv[])
|
||||
|
||||
if (markedFaces.size())
|
||||
{
|
||||
Info << "Found " << markedFaces.size() << " marked face(s)." << endl;
|
||||
Info<< "Found " << markedFaces.size() << " marked face(s)." << endl;
|
||||
|
||||
// Check and mark faces to pick up
|
||||
forAll (markedFaces, faceI)
|
||||
@ -373,11 +373,11 @@ int main(int argc, char *argv[])
|
||||
|
||||
Info<< "Subset:" << endl;
|
||||
surf2.writeStats(Info);
|
||||
Info << endl;
|
||||
Info<< endl;
|
||||
|
||||
fileName outFileName(args.additionalArgs()[2]);
|
||||
|
||||
Info << "Writing surface to " << outFileName << endl;
|
||||
Info<< "Writing surface to " << outFileName << endl;
|
||||
|
||||
surf2.write(outFileName);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user