diff --git a/src/finiteVolume/finiteVolume/fvc/fvcCellReduce.C b/src/finiteVolume/finiteVolume/fvc/fvcCellReduce.C index 19753c8eba..de0119fe46 100644 --- a/src/finiteVolume/finiteVolume/fvc/fvcCellReduce.C +++ b/src/finiteVolume/finiteVolume/fvc/fvcCellReduce.C @@ -31,18 +31,9 @@ License // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -namespace Foam -{ - -// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // - -namespace fvc -{ - -// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // - template -tmp> cellReduce +Foam::tmp> +Foam::fvc::cellReduce ( const GeometricField& ssf, const CombineOp& cop @@ -93,14 +84,14 @@ tmp> cellReduce template -tmp> cellReduce +Foam::tmp> +Foam::fvc::cellReduce ( - const tmp&> tssf, + const tmp>& tssf, const CombineOp& cop ) { - tmp> - tvf(cellReduce(cop, tssf)); + tmp> tvf(cellReduce(tssf, cop)); tssf.clear(); @@ -108,12 +99,4 @@ tmp> cellReduce } -// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // - -} // End namespace fvc - -// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // - -} // End namespace Foam - // ************************************************************************* //