File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
stdlib/public/Concurrency Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -377,7 +377,7 @@ extension SerialExecutor {
377
377
#if SWIFT_CONCURRENCY_USES_DISPATCH
378
378
@available ( SwiftStdlib 6 . 2 , * )
379
379
private var _dispatchQueue : OpaquePointer ? {
380
- return _getDispatchQueueForExecutor ( self . asUnownedSerialExecutor ( ) )
380
+ return unsafe _getDispatchQueueForExecutor ( self . asUnownedSerialExecutor ( ) )
381
381
}
382
382
#endif
383
383
@@ -387,8 +387,8 @@ extension SerialExecutor {
387
387
return true
388
388
}
389
389
#if SWIFT_CONCURRENCY_USES_DISPATCH
390
- if let rhsQueue = rhs. _dispatchQueue {
391
- if let ourQueue = _dispatchQueue, ourQueue == rhsQueue {
390
+ if let rhsQueue = unsafe rhs. _dispatchQueue {
391
+ if let ourQueue = unsafe _dispatchQueue, ourQueue == rhsQueue {
392
392
return true
393
393
}
394
394
return false
You can’t perform that action at this time.
0 commit comments