clang-tidy: Apply modernize-use-override everywhere (#6439)

... to mark overriding functions `override` instead of `virtual`.
This commit is contained in:
Levin Oehlmann
2022-06-19 23:03:55 +02:00
committed by GitHub
parent 7227c89847
commit 5904b249c0
273 changed files with 765 additions and 765 deletions

View File

@@ -10,7 +10,7 @@ class QTestSuite : public QObject
Q_OBJECT
public:
explicit QTestSuite(QObject *parent = 0);
~QTestSuite();
~QTestSuite() override;
static QList<QTestSuite*> suites();