From f32253b8029a2187050898bb95f10df4d1ebfdb1 Mon Sep 17 00:00:00 2001 From: Brandon Williams Date: Tue, 14 Oct 2025 17:36:28 -0500 Subject: [PATCH] Fix unconditional nonisolated. --- Package.resolved | 18 ++++++++++++++++++ .../StructuredQueriesMacros/TableMacro.swift | 2 +- 2 files changed, 19 insertions(+), 1 deletion(-) diff --git a/Package.resolved b/Package.resolved index 06e0a5e2..7b6e6951 100644 --- a/Package.resolved +++ b/Package.resolved @@ -10,6 +10,15 @@ "version" : "1.0.3" } }, + { + "identity" : "swift-case-paths", + "kind" : "remoteSourceControl", + "location" : "https://github.com/pointfreeco/swift-case-paths", + "state" : { + "revision" : "6989976265be3f8d2b5802c722f9ba168e227c71", + "version" : "1.7.2" + } + }, { "identity" : "swift-clocks", "kind" : "remoteSourceControl", @@ -91,6 +100,15 @@ "version" : "602.0.0" } }, + { + "identity" : "swift-tagged", + "kind" : "remoteSourceControl", + "location" : "https://github.com/pointfreeco/swift-tagged", + "state" : { + "revision" : "3907a9438f5b57d317001dc99f3f11b46882272b", + "version" : "0.10.0" + } + }, { "identity" : "xctest-dynamic-overlay", "kind" : "remoteSourceControl", diff --git a/Sources/StructuredQueriesMacros/TableMacro.swift b/Sources/StructuredQueriesMacros/TableMacro.swift index c30186d5..3d165a3b 100644 --- a/Sources/StructuredQueriesMacros/TableMacro.swift +++ b/Sources/StructuredQueriesMacros/TableMacro.swift @@ -1474,7 +1474,7 @@ extension TableMacro: MemberMacro { } """, """ - public nonisolated struct Selection: \(moduleName).TableExpression { + public \(nonisolated)struct Selection: \(moduleName).TableExpression { public typealias QueryValue = \(type.trimmed) public let allColumns: [any \(moduleName).QueryExpression] \(selectionInitializers, separator: "\n")