Updated template formatting to C++11

This commit is contained in:
Henry Weller
2016-07-12 20:03:29 +01:00
parent c535f6a3c4
commit ab84d6941f
11 changed files with 22 additions and 22 deletions

View File

@ -523,7 +523,7 @@ void Foam::isoSurfaceCell::generateTriPoints
template<class Type>
Foam::tmp<Foam::Field<Type> >
Foam::tmp<Foam::Field<Type>>
Foam::isoSurfaceCell::interpolate
(
const Field<Type>& cCoords,

View File

@ -742,7 +742,7 @@ Foam::isoSurface::interpolate
)
{
// One value per point
tmp<Field<Type> > tvalues(new Field<Type>(nPoints, Type(Zero)));
tmp<Field<Type>> tvalues(new Field<Type>(nPoints, Type(Zero)));
Field<Type>& values = tvalues.ref();
labelList nValues(values.size(), 0);
@ -770,7 +770,7 @@ Foam::isoSurface::interpolate
template<class Type>
Foam::tmp<Foam::Field<Type> >
Foam::tmp<Foam::Field<Type>>
Foam::isoSurface::interpolate
(
const GeometricField<Type, fvPatchField, volMesh>& cCoords,