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 d07ff79 commit 8270b38Copy full SHA for 8270b38
stdlib/public/SDK/Metal/Metal.swift
@@ -102,7 +102,7 @@ extension MTLDevice {
102
public func MTLCopyAllDevicesWithObserver(handler: @escaping MTLDeviceNotificationHandler) -> (devices:[MTLDevice], observer:NSObject) {
103
var observer: NSObjectProtocol?
104
let devices = __MTLCopyAllDevicesWithObserver(&observer, handler)
105
- // FIX-ME: The force cast here isn't great – ideally we would return the
+ // FIXME: The force cast here isn't great – ideally we would return the
106
// observer as an NSObjectProtocol.
107
return (devices, observer as! NSObject)
108
}
0 commit comments