forked from qt-creator/qt-creator
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:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user