diff options
Diffstat (limited to 'lldb/source/Commands/CommandObjectExpression.cpp')
-rw-r--r-- | lldb/source/Commands/CommandObjectExpression.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/Commands/CommandObjectExpression.cpp b/lldb/source/Commands/CommandObjectExpression.cpp index 11a4721a924..cdda76bc26d 100644 --- a/lldb/source/Commands/CommandObjectExpression.cpp +++ b/lldb/source/Commands/CommandObjectExpression.cpp @@ -482,8 +482,8 @@ void CommandObjectExpression::GetMultilineExpression() { IOHandlerSP io_handler_sp( new IOHandlerEditline(debugger, IOHandler::Type::Expression, "lldb-expr", // Name of input reader for history - nullptr, // No prompt - nullptr, // Continuation prompt + llvm::StringRef(), // No prompt + llvm::StringRef(), // Continuation prompt multiple_lines, color_prompt, 1, // Show line numbers starting at 1 *this)); |