Skip to content

Commit 422b447

Browse files
committed

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Sources/OpenGraph/Attribute/Attribute/OGAttribute.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ extension OGAttribute {
7878

7979
// MARK: CustomStringConvertible
8080

81-
extension OGAttribute: @retroactive CustomStringConvertible {
81+
extension OGAttribute: Swift.CustomStringConvertible {
8282
@inlinable
8383
public var description: String { "#\(rawValue)" }
8484
}

Sources/OpenGraph/Attribute/Weak/OGWeakAttribute.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ extension OGWeakAttribute {
3535
}
3636
}
3737

38-
extension OGWeakAttribute: @retroactive Hashable {
38+
extension OGWeakAttribute: Swift.Hashable {
3939
@_alwaysEmitIntoClient
4040
public static func == (lhs: OGWeakAttribute, rhs: OGWeakAttribute) -> Bool {
4141
lhs.raw_attribute == rhs.raw_attribute && lhs.subgraph_id == rhs.subgraph_id
@@ -53,7 +53,7 @@ extension OGWeakAttribute: @retroactive Hashable {
5353
}
5454
}
5555

56-
extension OGWeakAttribute: @retroactive CustomStringConvertible {
56+
extension OGWeakAttribute: Swift.CustomStringConvertible {
5757
@_alwaysEmitIntoClient
5858
public var description: String { attribute?.description ?? "nil" }
5959
}

Sources/OpenGraph/Runtime/OGTypeID.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ public func OGTypeApplyFields2(
2323
body: (UnsafePointer<Int8>, Int, Any.Type) -> Bool
2424
) -> Bool
2525

26-
extension OGTypeID: @retroactive Hashable, @retroactive CustomStringConvertible {
26+
extension OGTypeID: Swift.Hashable, Swift.CustomStringConvertible {
2727
@inlinable
2828
@inline(__always)
2929
public init(_ type: Any.Type) {

0 commit comments

Comments
 (0)