We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Symbol
Sendable
1 parent d259704 commit ec95739Copy full SHA for ec95739
Sources/IndexStoreDB/Symbol.swift
@@ -13,7 +13,7 @@
13
@_implementationOnly
14
import CIndexStoreDB
15
16
-public enum IndexSymbolKind: Hashable {
+public enum IndexSymbolKind: Hashable, Sendable {
17
case unknown
18
case module
19
case namespace
@@ -45,14 +45,14 @@ public enum IndexSymbolKind: Hashable {
45
case commentTag
46
}
47
48
-public enum Language: Hashable {
+public enum Language: Hashable, Sendable {
49
case c
50
case cxx
51
case objc
52
case swift
53
54
55
-public struct Symbol: Hashable {
+public struct Symbol: Hashable, Sendable {
56
57
public var usr: String
58
public var name: String
0 commit comments