mirror of
https://github.com/apple/swift.git
synced 2026-06-20 15:42:51 +02:00
2150ff6adf
Declare an explicit type for the enum to make SILGen output consistent across platforms.
6 lines
96 B
C
6 lines
96 B
C
|
|
typedef enum __attribute__((enum_extensibility(open))) YesOrNo : int {
|
|
Yes,
|
|
No,
|
|
} YesOrNo;
|