Updated template formatting

Resolves bug-report http://bugs.openfoam.org/view.php?id=2264
This commit is contained in:
Henry Weller
2016-09-22 21:03:30 +01:00
parent 447cdc2098
commit f066a9b54e
2 changed files with 6 additions and 6 deletions

View File

@ -461,7 +461,7 @@ void Foam::mapDistributeBase::distribute
{
// Set up sends to neighbours
List<List<T > > sendFields(Pstream::nProcs());
List<List<T>> sendFields(Pstream::nProcs());
for (label domain = 0; domain < Pstream::nProcs(); domain++)
{
@ -495,7 +495,7 @@ void Foam::mapDistributeBase::distribute
// Set up receives from neighbours
List<List<T > > recvFields(Pstream::nProcs());
List<List<T>> recvFields(Pstream::nProcs());
for (label domain = 0; domain < Pstream::nProcs(); domain++)
{
@ -938,7 +938,7 @@ void Foam::mapDistributeBase::distribute
{
// Set up sends to neighbours
List<List<T > > sendFields(Pstream::nProcs());
List<List<T>> sendFields(Pstream::nProcs());
for (label domain = 0; domain < Pstream::nProcs(); domain++)
{
@ -972,7 +972,7 @@ void Foam::mapDistributeBase::distribute
// Set up receives from neighbours
List<List<T > > recvFields(Pstream::nProcs());
List<List<T>> recvFields(Pstream::nProcs());
for (label domain = 0; domain < Pstream::nProcs(); domain++)
{

View File

@ -39,8 +39,8 @@ License
#define makeChemistrySolverType(SS, Comp, Thermo) \
\
typedef SS<chemistryModel<Comp, Thermo> > SS##Comp##Thermo; \
typedef SS<TDACChemistryModel<Comp, Thermo> > TDAC##SS##Comp##Thermo; \
typedef SS<chemistryModel<Comp, Thermo>> SS##Comp##Thermo; \
typedef SS<TDACChemistryModel<Comp, Thermo>> TDAC##SS##Comp##Thermo; \
\
defineTemplateTypeNameAndDebugWithName \
( \