Skip to content

Commit 35afbf7

Browse files
committed
clang-format
1 parent d524821 commit 35afbf7

File tree

4 files changed

+4
-6
lines changed

4 files changed

+4
-6
lines changed

libcxxabi/test/forced_unwind4.pass.cpp

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,7 @@
1717

1818
// Android/Bionic does not support pthread_cancel.
1919
#ifdef __BIONIC__
20-
int main(int, char**) {
21-
return 0;
22-
}
20+
int main(int, char**) { return 0; }
2321
#else
2422

2523
#include <chrono>

libunwind/test/bad_unwind_info.pass.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ extern "C" void stepper() {
7777
assert(unw_step(&cursor) <= 0);
7878
}
7979

80-
int main(int, char**) {
80+
int main(int, char **) {
8181
bad_unwind_info();
8282
return 0;
8383
}

libunwind/test/eh_frame_fde_pc_range.pass.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ void f() {
5353
assert(fde_fpc == fde_fpc1);
5454
}
5555

56-
int main(int, char**) {
56+
int main(int, char **) {
5757
f();
5858
return 0;
5959
}

libunwind/test/unw_resume.pass.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ __attribute__((noinline)) void test_unw_resume() {
2525
unw_resume(&cursor);
2626
}
2727

28-
int main(int, char**) {
28+
int main(int, char **) {
2929
test_unw_resume();
3030
return 0;
3131
}

0 commit comments

Comments
 (0)