Skip to content

Commit 451654f

Browse files
committed
don't use @_implementationOnly
1 parent 07518fe commit 451654f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Sources/Supporting/Locking.swift

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@
1010
//===----------------------------------------------------------------------===//
1111

1212
#if canImport(Darwin)
13-
@_implementationOnly import Darwin
13+
import Darwin
1414
#elseif canImport(Glibc)
15-
@_implementationOnly import Glibc
15+
import Glibc
1616
#elseif canImport(WinSDK)
17-
@_implementationOnly import WinSDK
17+
import WinSDK
1818
#elseif canImport(Android)
19-
@_implementationOnly import Android
19+
import Android
2020
#endif
2121

2222
internal struct Lock {

0 commit comments

Comments
 (0)