mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
Updated template formatting
Resolves bug-report http://bugs.openfoam.org/view.php?id=2264
This commit is contained in:
@ -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++)
|
||||
{
|
||||
|
||||
@ -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 \
|
||||
( \
|
||||
|
||||
Reference in New Issue
Block a user