STYLE: remove spacing around forAll macros and template '> >' closing

This commit is contained in:
Mark Olesen
2018-07-06 11:03:28 +02:00
parent 957d8dc38d
commit 96b65a781d
23 changed files with 151 additions and 154 deletions

View File

@ -178,7 +178,6 @@ public:
typedef OtherThermo<OtherComp, OtherMix<OtherPhys>> \
Type##Other##OtherThermo##OtherComp##OtherMix##OtherPhys; \
\
\
addInterfaceCompositionToRunTimeSelectionTable \
( \
Type, \
@ -196,7 +195,6 @@ public:
typedef OtherThermo<OtherComp, SpecieMixture<OtherMix<OtherPhys>>> \
Type##Other##OtherThermo##OtherComp##OtherMix##OtherPhys; \
\
\
addInterfaceCompositionToRunTimeSelectionTable \
( \
Type, \
@ -214,7 +212,6 @@ public:
typedef OtherThermo<OtherComp, OtherMix<OtherPhys>> \
Type##Other##OtherThermo##OtherComp##OtherMix##OtherPhys; \
\
\
addInterfaceCompositionToRunTimeSelectionTable \
( \
Type, \

View File

@ -47,9 +47,9 @@ writeFileHeader
const wordList& speciesNames =
chemistryModel_.thermo().composition().species();
forAll (speciesNames, si)
for (const word& speciesName : speciesNames)
{
writeTabbed(os, speciesNames[si]);
writeTabbed(os, speciesName);
}
os << endl;