Fem: Replace C cast

This commit is contained in:
marioalexis
2022-06-17 12:10:17 -03:00
committed by Chris Hennes
parent ff1b4eff05
commit 834f79845b
2 changed files with 4 additions and 4 deletions

View File

@@ -74,7 +74,7 @@ const FemMesh &PropertyFemMesh::getValue()const
const Data::ComplexGeoData* PropertyFemMesh::getComplexData() const
{
return (FemMesh*)_FemMesh;
return static_cast<FemMesh*>(_FemMesh);
}
Base::BoundBox3d PropertyFemMesh::getBoundingBox() const