[Lldb-commits] [lldb] [lldb] Remove PATH workaround for Android (PR #124682)
via lldb-commits
lldb-commits at lists.llvm.org
Tue Jan 28 18:46:11 PST 2025
github-actions[bot] wrote:
<!--LLVM CODE FORMAT COMMENT: {clang-format}-->
:warning: C/C++ code formatter, clang-format found issues in your code. :warning:
<details>
<summary>
You can test this locally with the following command:
</summary>
``````````bash
git-clang-format --diff cc97653d534e80745a0cfb0143972e8d4dec9f74 60d2ba572b2f597f66e5876d3796d295bbb1aa27 --extensions cpp -- lldb/source/Host/posix/ProcessLauncherPosixFork.cpp
``````````
</details>
<details>
<summary>
View the diff from clang-format here.
</summary>
``````````diff
diff --git a/lldb/source/Host/posix/ProcessLauncherPosixFork.cpp b/lldb/source/Host/posix/ProcessLauncherPosixFork.cpp
index 1dec7d080b..3e956290c3 100644
--- a/lldb/source/Host/posix/ProcessLauncherPosixFork.cpp
+++ b/lldb/source/Host/posix/ProcessLauncherPosixFork.cpp
@@ -237,8 +237,7 @@ ForkLaunchInfo::ForkLaunchInfo(const ProcessLaunchInfo &info)
disable_aslr(info.GetFlags().Test(eLaunchFlagDisableASLR)),
wd(info.GetWorkingDirectory().GetPath()),
argv(info.GetArguments().GetConstArgumentVector()),
- envp(info.GetEnvironment().getEnvp()),
- actions(MakeForkActions(info)) {}
+ envp(info.GetEnvironment().getEnvp()), actions(MakeForkActions(info)) {}
HostProcess
ProcessLauncherPosixFork::LaunchProcess(const ProcessLaunchInfo &launch_info,
``````````
</details>
https://github.com/llvm/llvm-project/pull/124682
More information about the lldb-commits
mailing list