Skip to content

Commit bc38a34

Browse files
committed
test: make Parse.objc_enum pass on Windows
Int is not always Int32. Explicitly use Int32 to ensure that the type is handled properly.
1 parent 86888ce commit bc38a34

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/Parse/objc_enum.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
case Zim, Zang, Zung
99
}
1010

11-
@objc(EnumRuntimeName) enum RuntimeNamed: Int {
11+
@objc(EnumRuntimeName) enum RuntimeNamed: Int32 {
1212
case Zim, Zang, Zung
1313
}
1414

0 commit comments

Comments
 (0)