diff options
author | Greg Clayton <gclayton@fb.com> | 2022-07-22 13:24:04 -0700 |
---|---|---|
committer | Greg Clayton <gclayton@fb.com> | 2022-07-22 13:24:26 -0700 |
commit | f959d815f4637890ebbacca379f1c38ab47e4e14 (patch) | |
tree | 49ba6697645e248361db205782c5670bb395a132 /lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp | |
parent | 0b36a62d5f3505e21692ae0abf25ef00836329e3 (diff) | |
download | llvm-f959d815f4637890ebbacca379f1c38ab47e4e14.zip llvm-f959d815f4637890ebbacca379f1c38ab47e4e14.tar.gz llvm-f959d815f4637890ebbacca379f1c38ab47e4e14.tar.bz2 |
Fix buildbot breakage after https://reviews.llvm.org/D130309.
Diffstat (limited to 'lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp')
-rw-r--r-- | lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp b/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp index e7cb154..6558993 100644 --- a/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp +++ b/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp @@ -241,7 +241,7 @@ void ScriptInterpreterPython::ComputePythonDir( llvm::sys::path::append(path, LLDB_PYTHON_RELATIVE_LIBDIR); #if defined(_WIN32) - // This will be injected directly through FileSpec.GetDirectory().SetString(), + // This will be injected directly through FileSpec.SetDirectory(), // so we need to normalize manually. std::replace(path.begin(), path.end(), '\\', '/'); #endif |