Skip to content

Commit 45aeebe

Browse files
committed
fixup! clang-format
1 parent 91fc35b commit 45aeebe

File tree

1 file changed

+2
-0
lines changed
  • lldb/test/API/lang/cpp/operators

1 file changed

+2
-0
lines changed

lldb/test/API/lang/cpp/operators/main.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,7 @@ int main(int argc, char **argv) {
125125
C *c2 = new C();
126126
C *c3 = new C[3];
127127

128+
// clang-format off
128129
//% self.expect("expr c->dummy", endstr=" 2324\n")
129130
//% self.expect("expr c->*2", endstr=" 2\n")
130131
//% self.expect("expr c + 44", endstr=" 44\n")
@@ -176,6 +177,7 @@ int main(int argc, char **argv) {
176177
//% self.expect("expr delete[] c3; side_effect", endstr=" = 2\n")
177178
//% self.expect("image lookup -n operator()", substrs=["C::operator()(int)"])
178179
//% self.expect("image lookup -n C::operator()", substrs=["C::operator()(int)"])
180+
// clang-format on
179181
delete c2;
180182
delete[] c3;
181183
return 0;

0 commit comments

Comments
 (0)