Formatting

This commit is contained in:
Hrvoje Jasak 2015-07-31 10:28:55 +01:00
parent c464f1ca43
commit 55921ceaa8

View file

@ -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)
);
}