mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
ENH: use typedef for MeshObject within derived classes
- use an internal 'typedef MeshObject<...> MeshObject_type' within derived classes. Reduces clutter and eases any updates.
This commit is contained in:
@ -166,7 +166,7 @@ Foam::refPtr<Foam::cellList> Foam::manifoldCellsMeshObject::filter
|
||||
|
||||
Foam::manifoldCellsMeshObject::manifoldCellsMeshObject(const polyMesh& mesh)
|
||||
:
|
||||
MeshObject<polyMesh, UpdateableMeshObject, manifoldCellsMeshObject>(mesh),
|
||||
MeshObject_type(mesh),
|
||||
cellsPtr_(nullptr),
|
||||
nCorrected_(-1)
|
||||
{}
|
||||
|
||||
Reference in New Issue
Block a user