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.
1 parent b202a8d commit 3062f14Copy full SHA for 3062f14
Sources/Foundation/RunLoop.swift
@@ -316,7 +316,7 @@ extension RunLoop {
316
let me = Unmanaged<_Source>.fromOpaque(info!).takeUnretainedValue()
317
return .passRetained(String(describing: me)._cfObject)
318
},
319
- equal: { (infoA, infoB) -> DarwinBoolean in
+ equal: { (infoA, infoB) in
320
let a = Unmanaged<_Source>.fromOpaque(infoA!).takeUnretainedValue()
321
let b = Unmanaged<_Source>.fromOpaque(infoB!).takeUnretainedValue()
322
return a == b ? true : false
0 commit comments