From 24ee6d3d3c6215db11e9015e94f5f4a9b5a7b750 Mon Sep 17 00:00:00 2001 From: Raphael Isemann Date: Mon, 31 May 2021 11:06:55 +0200 Subject: [PATCH] [lldb][NFC] Remove unused var in SBDebugger::GetInternalVariableValue This variable was originally just the default return value but got unused in 6920b52be6f8731692a9bff4fe6a7b596cda00c5 . --- lldb/source/API/SBDebugger.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/lldb/source/API/SBDebugger.cpp b/lldb/source/API/SBDebugger.cpp index 03e6fe5..a854c22 100644 --- a/lldb/source/API/SBDebugger.cpp +++ b/lldb/source/API/SBDebugger.cpp @@ -1334,7 +1334,6 @@ SBDebugger::GetInternalVariableValue(const char *var_name, lldb::SBStringList, SBDebugger, GetInternalVariableValue, (const char *, const char *), var_name, debugger_instance_name); - SBStringList ret_value; DebuggerSP debugger_sp(Debugger::FindDebuggerWithInstanceName( ConstString(debugger_instance_name))); Status error; -- 2.7.4