aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/cpptools/abstracteditorsupport.h
diff options
context:
space:
mode:
authorTobias Hunger <tobias.hunger@qt.io>2018-05-07 15:06:32 +0200
committerTobias Hunger <tobias.hunger@qt.io>2018-05-07 13:38:20 +0000
commit91c19ab19d17a332cb5c880bede5ed4462085978 (patch)
treee112d2d45e878206d798e4eb82dabec022468136 /src/plugins/cpptools/abstracteditorsupport.h
parentf531f76d04f1f7c9f1bb5f6ca407b474d165135a (diff)
CppTools: Use override consistently
clang-tidy fixes from modernize-use-override check. Change-Id: I0e6d6a9df3e87b8042ccc5ea0adc70070a3821d6 Reviewed-by: Ivan Donchevskii <ivan.donchevskii@qt.io>
Diffstat (limited to 'src/plugins/cpptools/abstracteditorsupport.h')
-rw-r--r--src/plugins/cpptools/abstracteditorsupport.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/cpptools/abstracteditorsupport.h b/src/plugins/cpptools/abstracteditorsupport.h
index 0aacf3a4d2..559b8d7692 100644
--- a/src/plugins/cpptools/abstracteditorsupport.h
+++ b/src/plugins/cpptools/abstracteditorsupport.h
@@ -38,7 +38,7 @@ class CPPTOOLS_EXPORT AbstractEditorSupport : public QObject
Q_OBJECT
public:
explicit AbstractEditorSupport(CppModelManager *modelmanager, QObject *parent = 0);
- ~AbstractEditorSupport();
+ ~AbstractEditorSupport() override;
/// \returns the contents, encoded as UTF-8
virtual QByteArray contents() const = 0;