commit | 4037780485c9141515cd12df0fc69dba7a22ea9b | [log] [tgz] |
---|---|---|
author | Zachary Turner <zturner@google.com> | Wed Sep 21 22:33:30 2016 +0000 |
committer | Zachary Turner <zturner@google.com> | Wed Sep 21 22:33:30 2016 +0000 |
tree | 7f81c9890b72987c3639af0d6708368e5bde4ba3 | |
parent | 2aba5cfa57a5ef87ec4e21fd531b2a96e6c55ecb [diff] [blame] |
Fix an incorrect nullptr conversion. llvm-svn: 282117
diff --git a/lldb/source/Interpreter/Args.cpp b/lldb/source/Interpreter/Args.cpp index 3c2e355..6b6fe46 100644 --- a/lldb/source/Interpreter/Args.cpp +++ b/lldb/source/Interpreter/Args.cpp
@@ -419,7 +419,7 @@ m_args_quote_char[idx] = quote_char; return GetArgumentAtIndex(idx); } - return nullptr; + return llvm::StringRef(); } void Args::DeleteArgumentAtIndex(size_t idx) {