Skip to content

Commit

Permalink
Fix nightly CI
Browse files Browse the repository at this point in the history
  • Loading branch information
FranzBusch committed Aug 24, 2023
1 parent 5b1c2de commit b69c630
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions Sources/_AsyncMergeSequence/Locking.swift
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@
//===----------------------------------------------------------------------===//

#if canImport(Darwin)
@_implementationOnly import Darwin
import Darwin
#elseif canImport(Glibc)
@_implementationOnly import Glibc
import Glibc
#elseif canImport(WinSDK)
@_implementationOnly import WinSDK
import WinSDK
#endif

internal struct Lock {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
//
//===----------------------------------------------------------------------===//

@_implementationOnly import DequeModule
import DequeModule

/// Creates an asynchronous sequence of elements from two underlying asynchronous sequences
public func merge<Base1: AsyncSequence, Base2: AsyncSequence>(_ base1: Base1, _ base2: Base2) -> AsyncMerge2Sequence<Base1, Base2>
Expand Down
2 changes: 1 addition & 1 deletion Sources/_AsyncMergeSequence/Merge/MergeStateMachine.swift
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
//
//===----------------------------------------------------------------------===//

@_implementationOnly import DequeModule
import DequeModule

/// The state machine for any of the `merge` operator.
///
Expand Down

0 comments on commit b69c630

Please sign in to comment.