File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -426,7 +426,7 @@ extension UnsafeMutableRawPointer: _CustomPlaygroundQuickLookable {
426
426
}
427
427
428
428
extension UnsafePointer : _CustomPlaygroundQuickLookable
429
- where Pointee: ~ Copyable // FIXME: This should not be necessary
429
+ where Pointee: ~ Copyable // FIXME: Remove this (rdar://123262870)
430
430
{
431
431
private var summary : String {
432
432
let ptrValue = UInt64 ( bitPattern: Int64 ( Int ( Builtin . ptrtoint_Word ( _rawValue) ) ) )
@@ -442,7 +442,7 @@ where Pointee: ~Copyable // FIXME: This should not be necessary
442
442
}
443
443
444
444
extension UnsafeMutablePointer : _CustomPlaygroundQuickLookable
445
- where Pointee: ~ Copyable // FIXME: This should not be necessary
445
+ where Pointee: ~ Copyable // FIXME: Remove this (rdar://123262870)
446
446
{
447
447
private var summary : String {
448
448
let ptrValue = UInt64 ( bitPattern: Int64 ( Int ( Builtin . ptrtoint_Word ( _rawValue) ) ) )
You can’t perform that action at this time.
0 commit comments