From 5e22e6211f4f0b7ea552c9630c9c9a227f44d743 Mon Sep 17 00:00:00 2001 From: Andreas Bauer Date: Sun, 14 Jul 2024 18:10:54 +0200 Subject: [PATCH] Fix Sendable for ModuleOwnership --- Sources/Spezi/Module/ModuleOwnership.swift | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Sources/Spezi/Module/ModuleOwnership.swift b/Sources/Spezi/Module/ModuleOwnership.swift index 667fe601..3b92a5a8 100644 --- a/Sources/Spezi/Module/ModuleOwnership.swift +++ b/Sources/Spezi/Module/ModuleOwnership.swift @@ -21,3 +21,6 @@ public enum ModuleOwnership { /// The module is managed and strongly referenced by Spezi. case spezi } + + +extension ModuleOwnership: Sendable, Hashable {}