Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Sources/CustomDump/Conformances/Foundation.swift
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import Foundation
#endif

// NB: Xcode 13 does not include macOS 12 SDK
#if compiler(>=5.5) && !os(macOS)
#if compiler(>=5.5) && !os(macOS) && !targetEnvironment(macCatalyst)
@available(iOS 15, macOS 12, tvOS 15, watchOS 8, *)
extension AttributedString: CustomDumpRepresentable {
public var customDumpValue: Any {
Expand Down
2 changes: 1 addition & 1 deletion Sources/CustomDump/Conformances/UserNotifications.swift
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@
}

// NB: Xcode 13 does not include macOS 12 SDK
#if compiler(>=5.5) && !os(macOS)
#if compiler(>=5.5) && !os(macOS) && !targetEnvironment(macCatalyst)
@available(iOS 15, macOS 12, tvOS 15, watchOS 8, *)
extension UNNotificationInterruptionLevel: CustomDumpStringConvertible {
public var customDumpDescription: String {
Expand Down