Skip to content

Commit cb68a9b

Browse files
committed
Try to fix the windows test failure
It imports the enum as a signed int rather than an unsigned int like on darwin
1 parent f32c534 commit cb68a9b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/IRGen/Inputs/large_c.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ typedef struct _ContainerType {
4343

4444
typedef unsigned char arr_t[32];
4545

46-
typedef enum {
46+
typedef enum : unsigned int {
4747
entry_0 = 0,
4848
entry_1 = 1,
4949
entry_2 = 2,

0 commit comments

Comments
 (0)