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.
2 parents 5e39681 + ec95739 commit 44a69dfCopy full SHA for 44a69df
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