STYLE: extraneous space in template parameter

This commit is contained in:
Mark Olesen
2019-10-30 12:54:06 +01:00
committed by Andrew Heather
parent fd4ffc8a27
commit c5ed28d0e3
11 changed files with 19 additions and 24 deletions

View File

@ -102,9 +102,9 @@ public:
);
//- Construct and return a clone
virtual tmp<fvPatch${FieldType} > clone() const
virtual tmp<fvPatch${FieldType}> clone() const
{
return tmp<fvPatch${FieldType} >
return tmp<fvPatch${FieldType}>
(
new ${typeName}FixedValueFvPatch${FieldType}(*this)
);
@ -118,12 +118,12 @@ public:
);
//- Construct and return a clone setting internal field reference
virtual tmp<fvPatch${FieldType} > clone
virtual tmp<fvPatch${FieldType}> clone
(
const DimensionedField<${TemplateType}, volMesh>& iF
) const
{
return tmp<fvPatch${FieldType} >
return tmp<fvPatch${FieldType}>
(
new ${typeName}FixedValueFvPatch${FieldType}(*this, iF)
);

View File

@ -102,9 +102,9 @@ public:
);
//- Construct and return a clone
virtual tmp<fvPatch${FieldType} > clone() const
virtual tmp<fvPatch${FieldType}> clone() const
{
return tmp<fvPatch${FieldType} >
return tmp<fvPatch${FieldType}>
(
new ${typeName}MixedValueFvPatch${FieldType}(*this)
);
@ -118,12 +118,12 @@ public:
);
//- Construct and return a clone setting internal field reference
virtual tmp<fvPatch${FieldType} > clone
virtual tmp<fvPatch${FieldType}> clone
(
const DimensionedField<${TemplateType}, volMesh>& iF
) const
{
return tmp<fvPatch${FieldType} >
return tmp<fvPatch${FieldType}>
(
new ${typeName}MixedValueFvPatch${FieldType}(*this, iF)
);