[Interpreter] Remove unused variable usage. NFCI.
authorDavide Italiano <davide@freebsd.org>
Wed, 1 Nov 2017 23:46:21 +0000 (23:46 +0000)
committerDavide Italiano <davide@freebsd.org>
Wed, 1 Nov 2017 23:46:21 +0000 (23:46 +0000)
llvm-svn: 317143

lldb/source/Interpreter/OptionValueDictionary.cpp

index b245a09..a57ede4 100644 (file)
@@ -227,8 +227,7 @@ OptionValueDictionary::GetSubValue(const ExecutionContext *exe_ctx,
   }
   assert(!temp.empty());
 
-  llvm::StringRef key, value;
-  llvm::StringRef quote_char;
+  llvm::StringRef key, quote_char;
 
   if (temp[0] == '\"' || temp[0] == '\'') {
     quote_char = temp.take_front();