File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed
Inputs/clang-importer-sdk Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -61,11 +61,11 @@ public struct NSZone {
61
61
public var pointer : OpaquePointer
62
62
}
63
63
64
- internal func _convertBoolToObjCBool( _ x: Bool ) -> ObjCBool {
64
+ public func _convertBoolToObjCBool( _ x: Bool ) -> ObjCBool {
65
65
return ObjCBool ( x)
66
66
}
67
67
68
- internal func _convertObjCBoolToBool( _ x: ObjCBool ) -> Bool {
68
+ public func _convertObjCBoolToBool( _ x: ObjCBool ) -> Bool {
69
69
return x. boolValue
70
70
}
71
71
Original file line number Diff line number Diff line change @@ -75,11 +75,11 @@ public struct NSZone {
75
75
public var pointer : OpaquePointer
76
76
}
77
77
78
- internal func _convertBoolToObjCBool( _ x: Bool ) -> ObjCBool {
78
+ public func _convertBoolToObjCBool( _ x: Bool ) -> ObjCBool {
79
79
return ObjCBool ( x)
80
80
}
81
81
82
- internal func _convertObjCBoolToBool( _ x: ObjCBool ) -> Bool {
82
+ public func _convertObjCBoolToBool( _ x: ObjCBool ) -> Bool {
83
83
return x. boolValue
84
84
}
85
85
Original file line number Diff line number Diff line change @@ -12,10 +12,10 @@ public struct ObjCBool {
12
12
}
13
13
14
14
@_silgen_name ( " swift_BoolToObjCBool " )
15
- func _convertBoolToObjCBool( _ x: Bool ) -> ObjCBool
15
+ public func _convertBoolToObjCBool( _ x: Bool ) -> ObjCBool
16
16
17
17
@_silgen_name ( " swift_ObjCBoolToBool " )
18
- func _convertObjCBoolToBool( _ x: ObjCBool ) -> Bool
18
+ public func _convertObjCBoolToBool( _ x: ObjCBool ) -> Bool
19
19
20
20
21
21
public struct Selector : ExpressibleByStringLiteral {
You can’t perform that action at this time.
0 commit comments