File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 9
9
10
10
@_fixed_layout
11
11
public struct CGFloat {
12
- #if arch(i386) || arch(arm) || arch(powerpc)
12
+ #if arch(i386) || arch(arm)
13
13
/// The native type used to store the CGFloat, which is Float on
14
14
/// 32-bit architectures and Double on 64-bit architectures.
15
15
public typealias NativeType = Float
@@ -183,7 +183,7 @@ extension CGFloat : BinaryFloatingPoint {
183
183
184
184
@_transparent
185
185
public init ( bitPattern: UInt ) {
186
- #if arch(i386) || arch(arm) || arch(powerpc)
186
+ #if arch(i386) || arch(arm)
187
187
native = NativeType ( bitPattern: UInt32 ( bitPattern) )
188
188
#elseif arch(x86_64) || arch(arm64) || arch(s390x) || arch(powerpc64) || arch(powerpc64le)
189
189
native = NativeType ( bitPattern: UInt64 ( bitPattern) )
You can’t perform that action at this time.
0 commit comments