mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
STYLE: remove spacing around forAll macros and template '> >' closing
This commit is contained in:
@ -178,7 +178,6 @@ public:
|
|||||||
typedef OtherThermo<OtherComp, OtherMix<OtherPhys>> \
|
typedef OtherThermo<OtherComp, OtherMix<OtherPhys>> \
|
||||||
Type##Other##OtherThermo##OtherComp##OtherMix##OtherPhys; \
|
Type##Other##OtherThermo##OtherComp##OtherMix##OtherPhys; \
|
||||||
\
|
\
|
||||||
\
|
|
||||||
addInterfaceCompositionToRunTimeSelectionTable \
|
addInterfaceCompositionToRunTimeSelectionTable \
|
||||||
( \
|
( \
|
||||||
Type, \
|
Type, \
|
||||||
@ -196,7 +195,6 @@ public:
|
|||||||
typedef OtherThermo<OtherComp, SpecieMixture<OtherMix<OtherPhys>>> \
|
typedef OtherThermo<OtherComp, SpecieMixture<OtherMix<OtherPhys>>> \
|
||||||
Type##Other##OtherThermo##OtherComp##OtherMix##OtherPhys; \
|
Type##Other##OtherThermo##OtherComp##OtherMix##OtherPhys; \
|
||||||
\
|
\
|
||||||
\
|
|
||||||
addInterfaceCompositionToRunTimeSelectionTable \
|
addInterfaceCompositionToRunTimeSelectionTable \
|
||||||
( \
|
( \
|
||||||
Type, \
|
Type, \
|
||||||
@ -214,7 +212,6 @@ public:
|
|||||||
typedef OtherThermo<OtherComp, OtherMix<OtherPhys>> \
|
typedef OtherThermo<OtherComp, OtherMix<OtherPhys>> \
|
||||||
Type##Other##OtherThermo##OtherComp##OtherMix##OtherPhys; \
|
Type##Other##OtherThermo##OtherComp##OtherMix##OtherPhys; \
|
||||||
\
|
\
|
||||||
\
|
|
||||||
addInterfaceCompositionToRunTimeSelectionTable \
|
addInterfaceCompositionToRunTimeSelectionTable \
|
||||||
( \
|
( \
|
||||||
Type, \
|
Type, \
|
||||||
|
|||||||
@ -47,9 +47,9 @@ writeFileHeader
|
|||||||
const wordList& speciesNames =
|
const wordList& speciesNames =
|
||||||
chemistryModel_.thermo().composition().species();
|
chemistryModel_.thermo().composition().species();
|
||||||
|
|
||||||
forAll (speciesNames, si)
|
for (const word& speciesName : speciesNames)
|
||||||
{
|
{
|
||||||
writeTabbed(os, speciesNames[si]);
|
writeTabbed(os, speciesName);
|
||||||
}
|
}
|
||||||
|
|
||||||
os << endl;
|
os << endl;
|
||||||
|
|||||||
Reference in New Issue
Block a user