Skip to content

Commit 19b98ad

Browse files
committed
Fix formatting
1 parent 62c8011 commit 19b98ad

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lldb/test/API/lang/cpp/enum_promotion/TestCPPEnumPromotion.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
from lldbsuite.test.lldbtest import *
88
from lldbsuite.test import lldbutil
99

10-
class TestCPPEnumPromotion(TestBase):
1110

11+
class TestCPPEnumPromotion(TestBase):
1212
@skipIf(debug_info=no_match(["dwarf", "dwo"]))
1313
def test(self):
1414
self.build()

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ enum EnumUInt { UInt = 0x10001 };
44
enum EnumSLong { SLong = 0x100000001 };
55
enum EnumULong { ULong = 0xFFFFFFFFFFFFFFF0 };
66
enum EnumNChar { NChar = -1 };
7-
enum EnumNShort { NShort= -0x101 };
7+
enum EnumNShort { NShort = -0x101 };
88
enum EnumNInt { NInt = -0x10001 };
99
enum EnumNLong { NLong = -0x100000001 };
1010

0 commit comments

Comments
 (0)