GenericGdbServerProvider: Fix a warning about unused variable

Amends 617d93761e

Change-Id: I7f9d89f8ff10e1618e9a02912a6c993311e9622b
Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
Jarek Kobus
2023-04-05 13:32:22 +02:00
parent 37f2d68464
commit 55cdfeab97

View File

@@ -19,8 +19,8 @@ class GenericGdbServerProvider final : public GdbServerProvider
private:
GenericGdbServerProvider();
QSet<StartupMode> supportedStartupModes() const final;
ProjectExplorer::RunWorker *targetRunner(
ProjectExplorer::RunControl *runControl) const final {
ProjectExplorer::RunWorker *targetRunner(ProjectExplorer::RunControl *runControl) const final {
Q_UNUSED(runControl)
// Generic Runner assumes GDB Server already running
return nullptr;
}