Mesh: modernize C++: use equals default

This commit is contained in:
wmayer
2023-08-21 17:46:03 +02:00
committed by wwmayer
parent 68bf28bea7
commit d11fdf3ba9
83 changed files with 201 additions and 809 deletions

View File

@@ -45,15 +45,7 @@ TYPESYSTEM_SOURCE(Mesh::PropertyCurvatureList , App::PropertyLists)
TYPESYSTEM_SOURCE(Mesh::PropertyMaterial , App::Property)
TYPESYSTEM_SOURCE(Mesh::PropertyMeshKernel , App::PropertyComplexGeoData)
PropertyNormalList::PropertyNormalList()
{
}
PropertyNormalList::~PropertyNormalList()
{
}
PropertyNormalList::PropertyNormalList() = default;
void PropertyNormalList::setSize(int newSize)
{
@@ -224,15 +216,7 @@ void PropertyNormalList::transformGeometry(const Base::Matrix4D &mat)
// ----------------------------------------------------------------------------
PropertyCurvatureList::PropertyCurvatureList()
{
}
PropertyCurvatureList::~PropertyCurvatureList()
{
}
PropertyCurvatureList::PropertyCurvatureList() = default;
void PropertyCurvatureList::setValue(const CurvatureInfo& lValue)
{