diff --git a/src/finiteVolume/finiteVolume/fvc/fvcSup.C b/src/finiteVolume/finiteVolume/fvc/fvcSup.C index d1af6ad007..67b0e11df7 100644 --- a/src/finiteVolume/finiteVolume/fvc/fvcSup.C +++ b/src/finiteVolume/finiteVolume/fvc/fvcSup.C @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | - \\ / A nd | Copyright (C) 2011 OpenFOAM Foundation + \\ / A nd | Copyright (C) 2011-2013 OpenFOAM Foundation \\/ M anipulation | ------------------------------------------------------------------------------- License @@ -43,7 +43,7 @@ tmp > Su ( const GeometricField& su, - GeometricField& vf + const GeometricField& vf ) { return su; @@ -54,7 +54,7 @@ tmp > Su ( const tmp >& tsu, - GeometricField& vf + const GeometricField& vf ) { return tsu; @@ -66,7 +66,7 @@ tmp > Sp ( const volScalarField& sp, - GeometricField& vf + const GeometricField& vf ) { return sp*vf; @@ -77,7 +77,7 @@ tmp > Sp ( const tmp& tsp, - GeometricField& vf + const GeometricField& vf ) { return tsp*vf; @@ -89,7 +89,7 @@ tmp > Sp ( const dimensionedScalar& sp, - GeometricField& vf + const GeometricField& vf ) { return sp*vf; @@ -101,7 +101,7 @@ tmp > SuSp ( const volScalarField& sp, - GeometricField& vf + const GeometricField& vf ) { return sp*vf; @@ -112,7 +112,7 @@ tmp > SuSp ( const tmp& tsp, - GeometricField& vf + const GeometricField& vf ) { return tsp*vf; diff --git a/src/finiteVolume/finiteVolume/fvc/fvcSup.H b/src/finiteVolume/finiteVolume/fvc/fvcSup.H index 8ac75a2150..2958d676b9 100644 --- a/src/finiteVolume/finiteVolume/fvc/fvcSup.H +++ b/src/finiteVolume/finiteVolume/fvc/fvcSup.H @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | - \\ / A nd | Copyright (C) 2011 OpenFOAM Foundation + \\ / A nd | Copyright (C) 2011-2013 OpenFOAM Foundation \\/ M anipulation | ------------------------------------------------------------------------------- License @@ -55,14 +55,14 @@ namespace fvc tmp > Su ( const GeometricField&, - GeometricField& + const GeometricField& ); template tmp > Su ( const tmp >&, - GeometricField& + const GeometricField& ); @@ -72,14 +72,14 @@ namespace fvc tmp > Sp ( const volScalarField&, - GeometricField& + const GeometricField& ); template tmp > Sp ( const tmp&, - GeometricField& + const GeometricField& ); @@ -87,7 +87,7 @@ namespace fvc tmp > Sp ( const dimensionedScalar&, - GeometricField& + const GeometricField& ); @@ -97,14 +97,14 @@ namespace fvc tmp > SuSp ( const volScalarField&, - GeometricField& + const GeometricField& ); template tmp > SuSp ( const tmp&, - GeometricField& + const GeometricField& ); }