summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhjk <hjk@theqtcompany.com>2015-06-22 12:11:45 +0200
committerhjk <hjk@theqtcompany.com>2015-06-22 15:27:21 +0000
commit405f2c7d88397371f5c91bb0abf3aa2e97edd00d (patch)
tree4325e63c8e19f7516166ef163da87041131dd7f4
parent96ad096eafd49f07963452d31a9da9dff856281c (diff)
downloadqt-creator-405f2c7d88397371f5c91bb0abf3aa2e97edd00d.tar.gz
Debugger: Remove some unused parameter
Change-Id: Ica2b6facee379fd1e046ced617e3e5176bb3d192 Reviewed-by: Christian Kandeler <christian.kandeler@theqtcompany.com>
-rw-r--r--src/plugins/debugger/gdb/gdbengine.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/debugger/gdb/gdbengine.cpp b/src/plugins/debugger/gdb/gdbengine.cpp
index 890ae8bb8c..5d20589e02 100644
--- a/src/plugins/debugger/gdb/gdbengine.cpp
+++ b/src/plugins/debugger/gdb/gdbengine.cpp
@@ -4706,7 +4706,7 @@ void GdbEngine::doUpdateLocals(const UpdateParameters &params)
cmd.arg("partialVariable", params.partialVariable);
cmd.arg("sortStructMembers", boolSetting(SortStructMembers));
cmd.flags = Discardable;
- cmd.callback = [this, params](const DebuggerResponse &r) { handleStackFrame(r); };
+ cmd.callback = [this](const DebuggerResponse &r) { handleStackFrame(r); };
runCommand(cmd);
cmd.arg("passExceptions", true);