From ae20c0fa6dc78dc6ced7cff092dd9c2fd4bfc979 Mon Sep 17 00:00:00 2001 From: Owen Voorhees Date: Sun, 2 Feb 2025 17:57:21 -0800 Subject: [PATCH] Mark ClangPrefixInfo as trivially Sendable --- Sources/SWBCore/Specs/Tools/CCompiler.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/SWBCore/Specs/Tools/CCompiler.swift b/Sources/SWBCore/Specs/Tools/CCompiler.swift index b2948c98..c4e1cb54 100644 --- a/Sources/SWBCore/Specs/Tools/CCompiler.swift +++ b/Sources/SWBCore/Specs/Tools/CCompiler.swift @@ -35,7 +35,7 @@ class AbstractCCompilerSpec : CompilerSpec, SpecIdentifierType, GCCCompatibleCom } } -public struct ClangPrefixInfo: Serializable, Hashable, Encodable { +public struct ClangPrefixInfo: Serializable, Hashable, Encodable, Sendable { let input: Path let pch: PCHInfo?