Skip to content

Commit a3dee5f

Browse files
authored
Merge pull request #195 from ahoppen/some-sendable-annotations
Mark `SymbolProperty` and `SymbolRole` as `Sendable`
2 parents 96db57f + 0a41785 commit a3dee5f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Sources/IndexStoreDB/SymbolProperty.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
@_implementationOnly
1414
import CIndexStoreDB
1515

16-
public struct SymbolProperty: OptionSet, Hashable {
16+
public struct SymbolProperty: OptionSet, Hashable, Sendable {
1717
public var rawValue: UInt64
1818

1919
public static let generic: SymbolProperty = SymbolProperty(rawValue: INDEXSTOREDB_SYMBOL_PROPERTY_GENERIC)

Sources/IndexStoreDB/SymbolRole.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
@_implementationOnly
1414
import CIndexStoreDB
1515

16-
public struct SymbolRole: OptionSet, Hashable {
16+
public struct SymbolRole: OptionSet, Hashable, Sendable {
1717

1818
public var rawValue: UInt64
1919

0 commit comments

Comments
 (0)