aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarcus Tillmanns <marcus.tillmanns@qt.io>2023-06-07 09:28:54 +0200
committerMarcus Tillmanns <marcus.tillmanns@qt.io>2023-06-07 07:30:13 +0000
commita3fb6a3a1cfae36d67c1e88a08bc316be4846c06 (patch)
tree93dd183daacaf9b3bd14293e20b5527e89fe67ed
parentadcf52e0c44679de40db4eac448acc46c4239c70 (diff)
Debugger: Fix compile warning
Change-Id: I77399e4f8260a043dbc429649fe33513d19fc91a Reviewed-by: hjk <hjk@qt.io>
-rw-r--r--src/plugins/debugger/gdb/gdbengine.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/plugins/debugger/gdb/gdbengine.cpp b/src/plugins/debugger/gdb/gdbengine.cpp
index f69c9f72d7..7a9eab16b9 100644
--- a/src/plugins/debugger/gdb/gdbengine.cpp
+++ b/src/plugins/debugger/gdb/gdbengine.cpp
@@ -1123,7 +1123,7 @@ void GdbEngine::handleStopResponse(const GdbMi &data)
const GdbMi frame = data["frame"];
// Jump over well-known frames.
- static int stepCounter = 0;
+ //static int stepCounter = 0;
if (debuggerSettings()->skipKnownFrames.value()) {
if (reason == "end-stepping-range" || reason == "function-finished") {
//showMessage(frame.toString());
@@ -1131,19 +1131,19 @@ void GdbEngine::handleStopResponse(const GdbMi &data)
QString fileName = frame["file"].data();
if (isLeavableFunction(funcName, fileName)) {
//showMessage(_("LEAVING ") + funcName);
- ++stepCounter;
+ //++stepCounter;
executeStepOut();
return;
}
if (isSkippableFunction(funcName, fileName)) {
//showMessage(_("SKIPPING ") + funcName);
- ++stepCounter;
+ //++stepCounter;
executeStepIn(false);
return;
}
//if (stepCounter)
// qDebug() << "STEPCOUNTER:" << stepCounter;
- stepCounter = 0;
+ //stepCounter = 0;
}
}