diff options
| author | Zachary Turner <zturner@google.com> | 2016-11-13 03:05:58 +0000 |
|---|---|---|
| committer | Zachary Turner <zturner@google.com> | 2016-11-13 03:05:58 +0000 |
| commit | 7a120c8b3df60a5da382f8f7baeaccdfa928bd5b (patch) | |
| tree | 2d6db437b35e241ea84a9abdd74990459dee525c /lldb/source | |
| parent | 988968394d7f63fe9bc0ec0bfcd5e633d611be1a (diff) | |
| download | bcm5719-llvm-7a120c8b3df60a5da382f8f7baeaccdfa928bd5b.tar.gz bcm5719-llvm-7a120c8b3df60a5da382f8f7baeaccdfa928bd5b.zip | |
Change IOHandlerConfirm to use StringRefs.
llvm-svn: 286743
Diffstat (limited to 'lldb/source')
| -rw-r--r-- | lldb/source/Core/IOHandler.cpp | 2 | ||||
| -rw-r--r-- | lldb/source/Interpreter/CommandInterpreter.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/Core/IOHandler.cpp b/lldb/source/Core/IOHandler.cpp index 39fdd13e32a..315d20ed24b 100644 --- a/lldb/source/Core/IOHandler.cpp +++ b/lldb/source/Core/IOHandler.cpp @@ -127,7 +127,7 @@ void IOHandlerStack::PrintAsync(Stream *stream, const char *s, size_t len) { } } -IOHandlerConfirm::IOHandlerConfirm(Debugger &debugger, const char *prompt, +IOHandlerConfirm::IOHandlerConfirm(Debugger &debugger, llvm::StringRef prompt, bool default_response) : IOHandlerEditline( debugger, IOHandler::Type::Confirm, diff --git a/lldb/source/Interpreter/CommandInterpreter.cpp b/lldb/source/Interpreter/CommandInterpreter.cpp index 89ef7fe7760..2243316232b 100644 --- a/lldb/source/Interpreter/CommandInterpreter.cpp +++ b/lldb/source/Interpreter/CommandInterpreter.cpp @@ -1896,7 +1896,7 @@ void CommandInterpreter::UpdatePrompt(llvm::StringRef new_prompt) { m_command_io_handler_sp->SetPrompt(new_prompt); } -bool CommandInterpreter::Confirm(const char *message, bool default_answer) { +bool CommandInterpreter::Confirm(llvm::StringRef message, bool default_answer) { // Check AutoConfirm first: if (m_debugger.GetAutoConfirm()) return default_answer; |

