App: modernize C++: use override

This commit is contained in:
wmayer
2023-08-03 23:13:02 +02:00
committed by wwmayer
parent 4d4267481f
commit c05091885e
9 changed files with 149 additions and 182 deletions

View File

@@ -175,7 +175,7 @@ public:
// cannot move this to the initializer list to avoid warning
imp = new FeaturePythonImp(this);
}
virtual ~FeaturePythonT() {
~FeaturePythonT() override {
delete imp;
}