Formatting
This commit is contained in:
parent
c464f1ca43
commit
55921ceaa8
1 changed files with 4 additions and 1 deletions
|
@ -149,7 +149,10 @@ tmp<Field<Type> > fixedGradientFvPatchField<Type>::valueInternalCoeffs
|
|||
const tmp<scalarField>&
|
||||
) const
|
||||
{
|
||||
return tmp<Field<Type> >(new Field<Type>(this->size(), pTraits<Type>::one));
|
||||
return tmp<Field<Type> >
|
||||
(
|
||||
new Field<Type>(this->size(), pTraits<Type>::one)
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
|
|
Reference in a new issue