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:
@ -98,10 +98,10 @@ int main(int argc, char *argv[])
|
||||
|
||||
if (THeader.headerOk() && Uheader.headerOk())
|
||||
{
|
||||
Info << "Reading T" << endl;
|
||||
Info<< "Reading T" << endl;
|
||||
volScalarField T(THeader, mesh);
|
||||
|
||||
Info << "Reading U" << endl;
|
||||
Info<< "Reading U" << endl;
|
||||
volVectorField U(Uheader, mesh);
|
||||
|
||||
# include "createPhi.H"
|
||||
|
||||
@ -93,10 +93,10 @@ int main(int argc, char *argv[])
|
||||
|
||||
if (pHeader.headerOk() && Uheader.headerOk())
|
||||
{
|
||||
Info << "Reading p" << endl;
|
||||
Info<< "Reading p" << endl;
|
||||
volScalarField p(pHeader, mesh);
|
||||
|
||||
Info << "Reading U" << endl;
|
||||
Info<< "Reading U" << endl;
|
||||
volVectorField U(Uheader, mesh);
|
||||
|
||||
# include "createPhi.H"
|
||||
|
||||
@ -94,10 +94,10 @@ int main(int argc, char *argv[])
|
||||
|
||||
if (pHeader.headerOk() && Uheader.headerOk())
|
||||
{
|
||||
Info << "Reading p" << endl;
|
||||
Info<< "Reading p" << endl;
|
||||
volScalarField p(pHeader, mesh);
|
||||
|
||||
Info << "Reading U" << endl;
|
||||
Info<< "Reading U" << endl;
|
||||
volVectorField U(Uheader, mesh);
|
||||
|
||||
# include "createPhi.H"
|
||||
|
||||
@ -99,10 +99,10 @@ int main(int argc, char *argv[])
|
||||
|
||||
if (THeader.headerOk() && Uheader.headerOk())
|
||||
{
|
||||
Info << "Reading T" << endl;
|
||||
Info<< "Reading T" << endl;
|
||||
volScalarField T(THeader, mesh);
|
||||
|
||||
Info << "Reading U" << endl;
|
||||
Info<< "Reading U" << endl;
|
||||
volVectorField U(Uheader, mesh);
|
||||
|
||||
# include "createPhi.H"
|
||||
|
||||
Reference in New Issue
Block a user