From 182aca8487ad06396a29757fd86189364fce832b Mon Sep 17 00:00:00 2001 From: Alessandro Portale Date: Thu, 2 Aug 2018 23:34:53 +0200 Subject: qmake: Apply modernize-use-override Add overrides to functions, except for destructors. Change-Id: I6e4640aa95a5c97d6bd6f6d8692d3290c421344e Reviewed-by: Oswald Buddenhagen --- qmake/option.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'qmake/option.h') diff --git a/qmake/option.h b/qmake/option.h index eaa3706b24..a0e31e1aed 100644 --- a/qmake/option.h +++ b/qmake/option.h @@ -60,12 +60,12 @@ class QMakeProject; class EvalHandler : public QMakeHandler { public: - void message(int type, const QString &msg, const QString &fileName, int lineNo); + void message(int type, const QString &msg, const QString &fileName, int lineNo) override; - void fileMessage(int type, const QString &msg); + void fileMessage(int type, const QString &msg) override; - void aboutToEval(ProFile *, ProFile *, EvalFileType); - void doneWithEval(ProFile *); + void aboutToEval(ProFile *, ProFile *, EvalFileType) override; + void doneWithEval(ProFile *) override; }; struct Option -- cgit v1.2.3