Convert some more aliasing and CI functions to StringRef.

llvm-svn: 283386
This commit is contained in:
Zachary Turner
2016-10-05 21:14:56 +00:00
parent a483f57942
commit a01bccdbe6
6 changed files with 22 additions and 30 deletions

View File

@@ -552,7 +552,7 @@ Error REPL::RunLoop() {
// dedicated REPL mode...
m_dedicated_repl_mode = true;
debugger.StartIOHandlerThread();
std::string command_name_str("quit");
llvm::StringRef command_name_str("quit");
CommandObject *cmd_obj =
debugger.GetCommandInterpreter().GetCommandObjectForCommand(
command_name_str);