diff options
author | Muhammad Omair Javaid <omair.javaid@linaro.org> | 2022-12-19 13:50:31 +0500 |
---|---|---|
committer | Muhammad Omair Javaid <omair.javaid@linaro.org> | 2022-12-19 13:52:10 +0500 |
commit | 58e9cc13e24f668a33abdae201d59a02e10c22c0 (patch) | |
tree | 1ce7b2762a4cdfbee3cb63617038166a86f56d29 /lldb/source/Commands/CommandObjectTarget.cpp | |
parent | 0fe37a75a50bc54d93db299f3126b49b92a8d363 (diff) | |
download | llvm-58e9cc13e24f668a33abdae201d59a02e10c22c0.zip llvm-58e9cc13e24f668a33abdae201d59a02e10c22c0.tar.gz llvm-58e9cc13e24f668a33abdae201d59a02e10c22c0.tar.bz2 |
Revert "[lldb] Remove redundant .c_str() and .get() calls"
This reverts commit fbaf48be0ff6fb24b9aa8fe9c2284fe88a8798dd.
This has broken all LLDB buildbots:
https://lab.llvm.org/buildbot/#/builders/68/builds/44990
https://lab.llvm.org/buildbot/#/builders/96/builds/33160
Diffstat (limited to 'lldb/source/Commands/CommandObjectTarget.cpp')
-rw-r--r-- | lldb/source/Commands/CommandObjectTarget.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Commands/CommandObjectTarget.cpp b/lldb/source/Commands/CommandObjectTarget.cpp index 9f5c2b3..86fd994 100644 --- a/lldb/source/Commands/CommandObjectTarget.cpp +++ b/lldb/source/Commands/CommandObjectTarget.cpp @@ -390,7 +390,7 @@ protected: module_sp->SetSymbolFileFileSpec(symfile); if (remote_file) { std::string remote_path = remote_file.GetPath(); - target_sp->SetArg0(remote_path); + target_sp->SetArg0(remote_path.c_str()); module_sp->SetPlatformFileSpec(remote_file); } } |