Skip to content

Commit b7b7b54

Browse files
committed
Fix clang format issues.
1 parent 59c71a9 commit b7b7b54

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

lldb/test/API/commands/frame/var/anon-struct/TestFrameVarAnonStruct.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,5 +59,8 @@ def do_test(self):
5959
interp = self.dbg.GetCommandInterpreter()
6060

6161
# Verify that we don't crash in this case.
62-
self.expect("frame variable 'b.x'", error=True,
63-
substrs=['"x" is not a member of "(B) b"'])
62+
self.expect(
63+
"frame variable 'b.x'",
64+
error=True,
65+
substrs=['"x" is not a member of "(B) b"'],
66+
)

lldb/test/API/commands/frame/var/anon-struct/main.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
int main(int argc, char** argv)
2-
{
1+
int main(int argc, char** argv) {
32
struct A {
43
struct {
54
int x = 1;

0 commit comments

Comments
 (0)