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 {
377377 #if SWIFT_CONCURRENCY_USES_DISPATCH
378378 @available ( SwiftStdlib 6 . 2 , * )
379379 private var _dispatchQueue : OpaquePointer ? {
380- return _getDispatchQueueForExecutor ( self . asUnownedSerialExecutor ( ) )
380+ return unsafe _getDispatchQueueForExecutor ( self . asUnownedSerialExecutor ( ) )
381381 }
382382 #endif
383383
@@ -387,8 +387,8 @@ extension SerialExecutor {
387387 return true
388388 }
389389 #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 {
392392 return true
393393 }
394394 return false
You can’t perform that action at this time.
0 commit comments