Debugger: Use override consistently

clang-tidy fixes from modernize-use-override check.

Change-Id: I6a20484716dc5bd84fe9592b40ae57be66fe32bf
Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
Tobias Hunger
2018-05-07 15:06:53 +02:00
parent 3890f5d67d
commit 2ec6cf1041
18 changed files with 45 additions and 45 deletions

View File

@@ -49,7 +49,7 @@ public:
explicit DebuggerRunTool(ProjectExplorer::RunControl *runControl,
ProjectExplorer::Kit *kit = nullptr,
bool allowTerminal = true);
~DebuggerRunTool();
~DebuggerRunTool() override;
Internal::DebuggerEngine *engine() const { return m_engine; }
Internal::DebuggerEngine *activeEngine() const;
@@ -154,7 +154,7 @@ class DEBUGGER_EXPORT GdbServerPortsGatherer : public ProjectExplorer::ChannelPr
public:
explicit GdbServerPortsGatherer(ProjectExplorer::RunControl *runControl);
~GdbServerPortsGatherer();
~GdbServerPortsGatherer() override;
void setUseGdbServer(bool useIt) { m_useGdbServer = useIt; }
bool useGdbServer() const { return m_useGdbServer; }
@@ -182,7 +182,7 @@ public:
explicit GdbServerRunner(ProjectExplorer::RunControl *runControl,
GdbServerPortsGatherer *portsGatherer);
~GdbServerRunner();
~GdbServerRunner() override;
void setRunnable(const ProjectExplorer::StandardRunnable &runnable);
void setUseMulti(bool on);