diff options
author | Davide Italiano <davide@freebsd.org> | 2017-11-01 23:46:21 +0000 |
---|---|---|
committer | Davide Italiano <davide@freebsd.org> | 2017-11-01 23:46:21 +0000 |
commit | 8e353b90c79572b6fe1c782952cda5e373620a85 (patch) | |
tree | 6b709c2d4e3b68c63370061cd41cc19076c50bc3 /lldb/source/Interpreter/OptionValueDictionary.cpp | |
parent | f33558b2241b191222217a577987a9d701fe10c3 (diff) | |
download | bcm5719-llvm-8e353b90c79572b6fe1c782952cda5e373620a85.tar.gz bcm5719-llvm-8e353b90c79572b6fe1c782952cda5e373620a85.zip |
[Interpreter] Remove unused variable usage. NFCI.
llvm-svn: 317143
Diffstat (limited to 'lldb/source/Interpreter/OptionValueDictionary.cpp')
-rw-r--r-- | lldb/source/Interpreter/OptionValueDictionary.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lldb/source/Interpreter/OptionValueDictionary.cpp b/lldb/source/Interpreter/OptionValueDictionary.cpp index b245a09c195..a57ede48631 100644 --- a/lldb/source/Interpreter/OptionValueDictionary.cpp +++ b/lldb/source/Interpreter/OptionValueDictionary.cpp @@ -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(); |