Skip to content

Commit

Permalink
[stdlib] Update FIXME
Browse files Browse the repository at this point in the history
  • Loading branch information
lorentey committed Feb 19, 2024
1 parent 7496d44 commit 1681dcd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions stdlib/public/core/MigrationSupport.swift
Original file line number Diff line number Diff line change
Expand Up @@ -426,7 +426,7 @@ extension UnsafeMutableRawPointer: _CustomPlaygroundQuickLookable {
}

extension UnsafePointer: _CustomPlaygroundQuickLookable
where Pointee: ~Copyable // FIXME: This should not be necessary
where Pointee: ~Copyable // FIXME: Remove this (rdar://123262870)
{
private var summary: String {
let ptrValue = UInt64(bitPattern: Int64(Int(Builtin.ptrtoint_Word(_rawValue))))
Expand All @@ -442,7 +442,7 @@ where Pointee: ~Copyable // FIXME: This should not be necessary
}

extension UnsafeMutablePointer: _CustomPlaygroundQuickLookable
where Pointee: ~Copyable // FIXME: This should not be necessary
where Pointee: ~Copyable // FIXME: Remove this (rdar://123262870)
{
private var summary: String {
let ptrValue = UInt64(bitPattern: Int64(Int(Builtin.ptrtoint_Word(_rawValue))))
Expand Down

0 comments on commit 1681dcd

Please sign in to comment.