We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 62c8011 commit 19b98adCopy full SHA for 19b98ad
lldb/test/API/lang/cpp/enum_promotion/TestCPPEnumPromotion.py
@@ -7,8 +7,8 @@
7
from lldbsuite.test.lldbtest import *
8
from lldbsuite.test import lldbutil
9
10
-class TestCPPEnumPromotion(TestBase):
11
+class TestCPPEnumPromotion(TestBase):
12
@skipIf(debug_info=no_match(["dwarf", "dwo"]))
13
def test(self):
14
self.build()
lldb/test/API/lang/cpp/enum_promotion/main.cpp
@@ -4,7 +4,7 @@ enum EnumUInt { UInt = 0x10001 };
4
enum EnumSLong { SLong = 0x100000001 };
5
enum EnumULong { ULong = 0xFFFFFFFFFFFFFFF0 };
6
enum EnumNChar { NChar = -1 };
-enum EnumNShort { NShort= -0x101 };
+enum EnumNShort { NShort = -0x101 };
enum EnumNInt { NInt = -0x10001 };
enum EnumNLong { NLong = -0x100000001 };
0 commit comments