Skip to content

Commit d26195d

Browse files
committed
Fix pre-6.0 imports
1 parent 1d184ec commit d26195d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Sources/SwiftCompilerPlugin/CompilerPlugin.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ import Glibc
3636
#elseif canImport(ucrt)
3737
import ucrt
3838
#elseif canImport(WASILibc)
39-
private import WASILibc
39+
import WASILibc
4040
#endif
4141
#endif
4242

Sources/SwiftCompilerPluginMessageHandling/JSON/JSONDecoding.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ import Glibc
2828
#elseif canImport(ucrt)
2929
import ucrt
3030
#elseif canImport(WASILibc)
31-
private import WASILibc
31+
import WASILibc
3232
#endif
3333
#endif
3434

0 commit comments

Comments
 (0)