Skip to content

Commit 2210da3

Browse files
[lldb][AIX] clang-format changes for ProcessLauncherPosixFork.cpp (#120459)
This PR is in reference to porting LLDB on AIX. Link to discussions on llvm discourse and github: 1. https://discourse.llvm.org/t/port-lldb-to-ibm-aix/80640 2. #101657 The complete changes for porting are present in this draft PR: #102601 Added clang-format changes for ProcessLauncherPosixFork.cpp which will be followed by ptrace changes in: - #120390
1 parent 9fc2fad commit 2210da3

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

lldb/source/Host/posix/ProcessLauncherPosixFork.cpp

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@
2121
#include <sys/wait.h>
2222
#include <unistd.h>
2323

24-
#include <sstream>
2524
#include <csignal>
25+
#include <sstream>
2626

2727
#ifdef __ANDROID__
2828
#include <android/api-level.h>
@@ -47,8 +47,7 @@ static void write_string(int error_fd, const char *str) {
4747
(void)r;
4848
}
4949

50-
[[noreturn]] static void ExitWithError(int error_fd,
51-
const char *operation) {
50+
[[noreturn]] static void ExitWithError(int error_fd, const char *operation) {
5251
int err = errno;
5352
write_string(error_fd, operation);
5453
write_string(error_fd, " failed: ");

0 commit comments

Comments
 (0)