File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -321,19 +321,19 @@ internal func _swift_unownedRetainCount(_: UnsafeMutableRawPointer) -> Int
321
321
internal func _swift_weakRetainCount( _: UnsafeMutableRawPointer ) -> Int
322
322
323
323
// Utilities to get refcount(s) of class objects.
324
- @backDeployed ( before : SwiftStdlib 5.11 )
324
+ @_alwaysEmitIntoClient
325
325
public func _getRetainCount( _ object: AnyObject ) -> UInt {
326
326
let count = _withHeapObject ( of: object) { _swift_retainCount ( $0) }
327
327
return UInt ( bitPattern: count)
328
328
}
329
329
330
- @backDeployed ( before : SwiftStdlib 5.11 )
330
+ @_alwaysEmitIntoClient
331
331
public func _getUnownedRetainCount( _ object: AnyObject ) -> UInt {
332
332
let count = _withHeapObject ( of: object) { _swift_unownedRetainCount ( $0) }
333
333
return UInt ( bitPattern: count)
334
334
}
335
335
336
- @backDeployed ( before : SwiftStdlib 5.11 )
336
+ @_alwaysEmitIntoClient
337
337
public func _getWeakRetainCount( _ object: AnyObject ) -> UInt {
338
338
let count = _withHeapObject ( of: object) { _swift_weakRetainCount ( $0) }
339
339
return UInt ( bitPattern: count)
You can’t perform that action at this time.
0 commit comments