From bffe21b91f544bd9414ef5686d3dd5e9b8bfc236 Mon Sep 17 00:00:00 2001 From: Boris Buegling Date: Mon, 17 Nov 2025 16:20:02 -0800 Subject: [PATCH] Fix warning by reducing visibility rdar://164768898 --- Sources/SWBMacro/MacroValueAssignmentTable.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/SWBMacro/MacroValueAssignmentTable.swift b/Sources/SWBMacro/MacroValueAssignmentTable.swift index 6357b827..d9f00f09 100644 --- a/Sources/SWBMacro/MacroValueAssignmentTable.swift +++ b/Sources/SWBMacro/MacroValueAssignmentTable.swift @@ -11,7 +11,7 @@ //===----------------------------------------------------------------------===// public import SWBUtil -public import Synchronization +package import Synchronization /// A mapping from macro declarations to corresponding macro value assignments, each of which is a linked list of macro expressions in precedence order. At the moment it doesn’t support conditional assignments, but that functionality will be implemented soon. public struct MacroValueAssignmentTable: Serializable, Sendable {