aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/debugger/breakhandler.h
diff options
context:
space:
mode:
authorIgor Sidorov <fliyfzen@gmail.com>2020-01-29 04:15:25 +0300
committerIgor Sidorov <fliyfzen@gmail.com>2020-02-05 09:33:55 +0000
commita9e40ad14c42a48e792659c17fb4f01486041b09 (patch)
tree82dbdec456afaddd6b47620b557e3f1bfaa6ce71 /src/plugins/debugger/breakhandler.h
parentaeb7ef6b37030ed4beb8f431167d2ef88172486b (diff)
Add final specifies to classes
Warning -Wfinal-dtor-non-final-class in clang trunk Change-Id: I2bf17064bf8898eab10b82b69583a283157766d0 Reviewed-by: Eike Ziller <eike.ziller@qt.io>
Diffstat (limited to 'src/plugins/debugger/breakhandler.h')
-rw-r--r--src/plugins/debugger/breakhandler.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/debugger/breakhandler.h b/src/plugins/debugger/breakhandler.h
index d924bd6fed..55a4bfd9bd 100644
--- a/src/plugins/debugger/breakhandler.h
+++ b/src/plugins/debugger/breakhandler.h
@@ -110,7 +110,7 @@ private:
using GlobalBreakpoint = QPointer<GlobalBreakpointItem>;
using GlobalBreakpoints = QList<GlobalBreakpoint>;
-class BreakpointItem : public QObject, public Utils::TypedTreeItem<SubBreakpointItem>
+class BreakpointItem final : public QObject, public Utils::TypedTreeItem<SubBreakpointItem>
{
Q_DECLARE_TR_FUNCTIONS(Debugger::Internal::BreakHandler)