Skip to content

Commit fee7a26

Browse files
vgorloffzayass
authored andcommitted
Fix for compile error addressed Float80 data type. See also: swiftlang/swift#25502
1 parent 1b4aaa9 commit fee7a26

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Foundation/CGFloat.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public struct CGFloat {
3131
self.native = NativeType(value)
3232
}
3333

34-
#if !os(Windows) && (arch(i386) || arch(x86_64))
34+
#if !(os(Windows) || os(Android)) && (arch(i386) || arch(x86_64))
3535
@_transparent public init(_ value: Float80) {
3636
self.native = NativeType(value)
3737
}

0 commit comments

Comments
 (0)