COMP: Resolved compiler warnings

This commit is contained in:
Andrew Heather
2018-12-03 16:46:24 +00:00
parent 798ede77ec
commit a8ff5b10e8
4 changed files with 2 additions and 6 deletions

View File

@ -286,7 +286,6 @@ Foam::faAreaMapper::faAreaMapper
: :
mesh_(mesh), mesh_(mesh),
mpm_(mpm), mpm_(mpm),
insertedFaces_(false),
direct_(false), direct_(false),
hasUnmapped_(false), hasUnmapped_(false),
sizeBeforeMapping_(mesh.nFaces()), sizeBeforeMapping_(mesh.nFaces()),

View File

@ -68,9 +68,6 @@ class faAreaMapper
//- Reference to mapPolyMesh //- Reference to mapPolyMesh
const mapPolyMesh& mpm_; const mapPolyMesh& mpm_;
//- Are there any inserted (unmapped) faces
bool insertedFaces_;
//- Is the mapping direct //- Is the mapping direct
bool direct_; bool direct_;

View File

@ -65,7 +65,7 @@ Foam::faEdgeMapper::faEdgeMapper
) )
: :
mesh_(mesh), mesh_(mesh),
mpm_(mpm), // mpm_(mpm),
sizeBeforeMapping_(mesh.nInternalEdges()), sizeBeforeMapping_(mesh.nInternalEdges()),
hasUnmapped_(false), hasUnmapped_(false),
directAddrPtr_(nullptr) directAddrPtr_(nullptr)

View File

@ -67,7 +67,7 @@ class faEdgeMapper
const faMesh& mesh_; const faMesh& mesh_;
//- Reference to mapPolyMesh //- Reference to mapPolyMesh
const mapPolyMesh& mpm_; //const mapPolyMesh& mpm_;
//- Old mesh size //- Old mesh size
label sizeBeforeMapping_; label sizeBeforeMapping_;