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 cc366d5 + bcffd22 commit d217afaCopy full SHA for d217afa
Foundation/NSSwiftRuntime.swift
@@ -18,12 +18,15 @@ import CoreFoundation
18
@_exported import Glibc
19
#endif
20
21
+@_exported import Dispatch
22
+
23
#if os(Android) // shim required for bzero
24
@_transparent func bzero(_ ptr: UnsafeMutableRawPointer, _ size: size_t) {
25
memset(ptr, 0, size)
26
}
27
28
29
+#if !_runtime(_ObjC)
30
/// The Objective-C BOOL type.
31
///
32
/// On 64-bit iOS, the Objective-C BOOL type is a typedef of C/C++
@@ -81,6 +84,7 @@ extension ObjCBool : CustomStringConvertible {
81
84
return self.boolValue.description
82
85
83
86
87
+#endif
88
89
internal class __NSCFType : NSObject {
90
private var _cfinfo : Int32
0 commit comments