Gui: modernize C++: use equals default

This commit is contained in:
wmayer
2023-08-20 18:12:43 +02:00
parent 3e35b5f606
commit c016f1c1fb
188 changed files with 408 additions and 1124 deletions

View File

@@ -81,9 +81,7 @@ SelectionGatePython::SelectionGatePython(const Py::Object& obj)
{
}
SelectionGatePython::~SelectionGatePython()
{
}
SelectionGatePython::~SelectionGatePython() = default;
bool SelectionGatePython::allow(App::Document* doc, App::DocumentObject* obj, const char* sub)
{
@@ -158,9 +156,7 @@ void SelectionFilter::setFilter(const char* filter)
}
}
SelectionFilter::~SelectionFilter()
{
}
SelectionFilter::~SelectionFilter() = default;
bool SelectionFilter::match()
{