From 81e494c575338568a5825ff9ee08862e1f0f411e Mon Sep 17 00:00:00 2001 From: Freddy Kellison-Linn Date: Thu, 15 Feb 2024 16:21:36 -0500 Subject: [PATCH] NSNotification.Name is sendable --- Sources/Foundation/NSNotification.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/Foundation/NSNotification.swift b/Sources/Foundation/NSNotification.swift index 15b2e78f13..82f7536170 100644 --- a/Sources/Foundation/NSNotification.swift +++ b/Sources/Foundation/NSNotification.swift @@ -8,7 +8,7 @@ // open class NSNotification: NSObject, NSCopying, NSCoding { - public struct Name : RawRepresentable, Equatable, Hashable { + public struct Name : RawRepresentable, Equatable, Hashable, Sendable { public private(set) var rawValue: String public init(_ rawValue: String) {