We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 765dd47 + 3692751 commit 537017aCopy full SHA for 537017a
benchmark/single-source/FloatingPointConversion.swift
@@ -61,7 +61,9 @@ extension MockBinaryFloatingPoint {
61
init(_ value: Int) { self.init(_Value(value)) }
62
init(_ value: Float) { self.init(_Value(value)) }
63
init(_ value: Double) { self.init(_Value(value)) }
64
- init(_ value: Float80) { self.init(_Value(value)) }
+ #if !(os(Windows) || os(Android)) && (arch(i386) || arch(x86_64))
65
+ init(_ value: Float80) { self.init(_Value(value)) }
66
+ #endif
67
init(integerLiteral value: _Value.IntegerLiteralType) {
68
self.init(_Value(integerLiteral: value))
69
}
0 commit comments