ENH: checkMesh: pass by reference. See #755.

This commit is contained in:
mattijs
2018-10-29 15:08:52 +00:00
parent ccafd3cd30
commit f2ef995113
2 changed files with 3 additions and 3 deletions

View File

@ -3,7 +3,7 @@
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | Copyright (C) 2015-2017 OpenFOAM Foundation
\\/ M anipulation | Copyright (C) 2015-2017 OpenCFD Ltd.
\\/ M anipulation | Copyright (C) 2015-2018 OpenCFD Ltd.
-------------------------------------------------------------------------------
License
This file is part of OpenFOAM.
@ -209,7 +209,7 @@ void Foam::mergeAndWrite
const polyMesh& mesh,
const surfaceWriter& writer,
const word& name,
const indirectPrimitivePatch setPatch,
const indirectPrimitivePatch& setPatch,
const fileName& outputDir
)
{

View File

@ -21,7 +21,7 @@ namespace Foam
const polyMesh& mesh,
const surfaceWriter& writer,
const word& name,
const indirectPrimitivePatch setPatch,
const indirectPrimitivePatch& setPatch,
const fileName& outputDir
);