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.
2 parents e777840 + a650ff0 commit 0e99e30Copy full SHA for 0e99e30
test/ClangImporter/Inputs/custom-modules/EnumExhaustivity.h
@@ -5,6 +5,9 @@
5
enum _name _name; \
6
enum __attribute__((enum_extensibility(closed))) _name
7
8
+
9
+#pragma clang diagnostic push
10
+#pragma clang diagnostic ignored "-Wmicrosoft-enum-forward-reference"
11
typedef MY_ENUM(RegularEnum) {
12
RegularEnumA,
13
RegularEnumB
@@ -47,3 +50,4 @@ enum __attribute__((enum_extensibility(closed))) UnavailableCases {
47
50
UnavailableCasesB,
48
51
UnavailableCasesThisIsTheUnavailableOne __attribute__((availability(swift, unavailable)))
49
52
};
53
+#pragma clang diagnostic pop
0 commit comments