Skip to content

Commit 43fef2a

Browse files
committed
Fix for compile error addressed Float80 data type. See also: swiftlang/swift#25502
1 parent 73f2a62 commit 43fef2a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: Foundation/CGFloat.swift

+1-1
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)