File tree Expand file tree Collapse file tree 2 files changed +9
-3
lines changed
GRPCCore/Call/Client/Internal Expand file tree Collapse file tree 2 files changed +9
-3
lines changed Original file line number Diff line number Diff line change 1515 */
1616#if canImport(Darwin)
1717public import Darwin // should be @usableFromInline
18- #else
18+ #elseif canImport(Glibc)
1919public import Glibc // should be @usableFromInline
20+ #elseif canImport(Musl)
21+ public import Musl // should be @usableFromInline
22+ #else
23+ #error("Unsupported OS")
2024#endif
2125
2226@usableFromInline
Original file line number Diff line number Diff line change 1717#if canImport(Darwin)
1818private import Darwin
1919#elseif canImport(Glibc)
20- private import Glibc
20+ private import Glibc // should be @usableFromInline
2121#elseif canImport(Musl)
22- private import Musl
22+ private import Musl // should be @usableFromInline
23+ #else
24+ #error("Unsupported OS")
2325#endif
2426
2527enum System {
You can’t perform that action at this time.
0 commit comments