Skip to content

Commit b7654f1

Browse files
authored
Merge pull request #30885 from compnerd/android-fp80
stdlib: android does not support fp80
2 parents 4c4bf08 + 3fe5b15 commit b7654f1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stdlib/public/core/FloatingPointTypes.swift.gyb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -903,7 +903,7 @@ extension ${Self}: _ExpressibleByBuiltinIntegerLiteral, ExpressibleByIntegerLite
903903
}
904904

905905
% if bits != 80:
906-
#if !os(Windows) && (arch(i386) || arch(x86_64))
906+
#if !(os(Windows) || os(Android)) && (arch(i386) || arch(x86_64))
907907
% end
908908

909909
% builtinFloatLiteralBits = 80

0 commit comments

Comments
 (0)