Skip to content

Commit 3763051

Browse files
committed
Fix code formatting
1 parent 17302d3 commit 3763051

File tree

1 file changed

+3
-9
lines changed
  • lldb/test/API/lang/cpp/std-invoke-recognizer

1 file changed

+3
-9
lines changed

lldb/test/API/lang/cpp/std-invoke-recognizer/main.cpp

+3-9
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
#include <functional>
22

3-
void consume_number(int i) {
4-
__builtin_printf("break here");
5-
}
3+
void consume_number(int i) { __builtin_printf("break here"); }
64

75
int add(int i, int j) {
86
// break here
@@ -11,12 +9,8 @@ int add(int i, int j) {
119

1210
struct Callable {
1311
Callable(int num) : num_(num) {}
14-
void operator()(int i) const {
15-
__builtin_printf("break here");
16-
}
17-
void member_function(int i) const {
18-
__builtin_printf("break here");
19-
}
12+
void operator()(int i) const { __builtin_printf("break here"); }
13+
void member_function(int i) const { __builtin_printf("break here"); }
2014
int num_;
2115
};
2216

0 commit comments

Comments
 (0)