We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ea2c501 commit c9019d6Copy full SHA for c9019d6
tools/swift-inspect/Sources/swift-inspect/RemoteMirror+Extensions.swift
@@ -12,7 +12,7 @@
12
13
import SwiftRemoteMirror
14
15
-extension swift_metadata_allocation_t: Encodable {
+extension swift_metadata_allocation_t: @retroactive Encodable {
16
internal var tag: swift_metadata_allocation_tag_t { return self.Tag }
17
internal var ptr: swift_reflection_ptr_t { return self.Ptr }
18
internal var size: Int { return Int(self.Size) }
@@ -29,7 +29,7 @@ extension swift_metadata_allocation_t: Encodable {
29
}
30
31
32
-extension swift_metadata_allocation_t: Comparable {
+extension swift_metadata_allocation_t: @retroactive Comparable {
33
public static func == (lhs: Self, rhs: Self) -> Bool {
34
lhs.ptr == rhs.ptr
35
0 commit comments