diff options
author | Pavel Labath <pavel@labath.sk> | 2021-10-18 10:39:58 +0200 |
---|---|---|
committer | Pavel Labath <pavel@labath.sk> | 2021-10-21 12:58:45 +0200 |
commit | 2ace1e5753a49195ca17f3e175c7e189cf147760 (patch) | |
tree | b325dc674709615db76b8826d1edb7e48ec6f209 /lldb/source/Commands/CommandObjectProcess.cpp | |
parent | 898e80964c950fb49a133ff6018079fe8a7c922b (diff) | |
download | llvm-2ace1e5753a49195ca17f3e175c7e189cf147760.zip llvm-2ace1e5753a49195ca17f3e175c7e189cf147760.tar.gz llvm-2ace1e5753a49195ca17f3e175c7e189cf147760.tar.bz2 |
[lldb] Remove ConstString from GetPluginNameStatic of some plugins
This patch deals with ObjectFile, ObjectContainer and OperatingSystem
plugins. I'll convert the other types in separate patches.
In order to enable piecemeal conversion, I am leaving some ConstStrings
in the lowest PluginManager layers. I'll convert those as the last step.
Differential Revision: https://reviews.llvm.org/D112061
Diffstat (limited to 'lldb/source/Commands/CommandObjectProcess.cpp')
-rw-r--r-- | lldb/source/Commands/CommandObjectProcess.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lldb/source/Commands/CommandObjectProcess.cpp b/lldb/source/Commands/CommandObjectProcess.cpp index f3d20b3..8ce14f2 100644 --- a/lldb/source/Commands/CommandObjectProcess.cpp +++ b/lldb/source/Commands/CommandObjectProcess.cpp @@ -1216,7 +1216,7 @@ public: switch (short_option) { case 'p': - m_requested_plugin_name.SetString(option_arg); + m_requested_plugin_name = option_arg.str(); break; case 's': m_requested_save_core_style = @@ -1233,12 +1233,12 @@ public: void OptionParsingStarting(ExecutionContext *execution_context) override { m_requested_save_core_style = eSaveCoreUnspecified; - m_requested_plugin_name.Clear(); + m_requested_plugin_name.clear(); } // Instance variables to hold the values for command options. SaveCoreStyle m_requested_save_core_style; - ConstString m_requested_plugin_name; + std::string m_requested_plugin_name; }; protected: |