diff options
| author | Zachary Turner <zturner@google.com> | 2016-10-05 21:14:56 +0000 |
|---|---|---|
| committer | Zachary Turner <zturner@google.com> | 2016-10-05 21:14:56 +0000 |
| commit | a01bccdbe613f5e65fa8da2fb07d6b9b66d203bf (patch) | |
| tree | c16ba4c60dd4789d645227b2167cb31b4005804a /lldb/source/Plugins/StructuredData/DarwinLog/StructuredDataDarwinLog.cpp | |
| parent | a483f579428067c4e7ae7e6617edb67911151ae9 (diff) | |
| download | bcm5719-llvm-a01bccdbe613f5e65fa8da2fb07d6b9b66d203bf.tar.gz bcm5719-llvm-a01bccdbe613f5e65fa8da2fb07d6b9b66d203bf.zip | |
Convert some more aliasing and CI functions to StringRef.
llvm-svn: 283386
Diffstat (limited to 'lldb/source/Plugins/StructuredData/DarwinLog/StructuredDataDarwinLog.cpp')
| -rw-r--r-- | lldb/source/Plugins/StructuredData/DarwinLog/StructuredDataDarwinLog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Plugins/StructuredData/DarwinLog/StructuredDataDarwinLog.cpp b/lldb/source/Plugins/StructuredData/DarwinLog/StructuredDataDarwinLog.cpp index 4895962d47b..ed86dfcf813 100644 --- a/lldb/source/Plugins/StructuredData/DarwinLog/StructuredDataDarwinLog.cpp +++ b/lldb/source/Plugins/StructuredData/DarwinLog/StructuredDataDarwinLog.cpp @@ -1447,7 +1447,7 @@ void StructuredDataDarwinLog::DebuggerInitialize(Debugger &debugger) { // Get parent command. auto &interpreter = debugger.GetCommandInterpreter(); - std::string parent_command_text = "plugin structured-data"; + llvm::StringRef parent_command_text = "plugin structured-data"; auto parent_command = interpreter.GetCommandObjectForCommand(parent_command_text); if (!parent_command) { |

