Skip to content

Commit 87cc7f5

Browse files
tackgyufreak4pc
authored andcommitted
Fix carthage build failure
1 parent 665fc63 commit 87cc7f5

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

Sources/Operators/PrefixDuration.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
// Copyright © 2020 Combine Community. All rights reserved.
77
//
88

9-
#if canImport(Combine)
9+
#if !(os(iOS) && (arch(i386) || arch(arm))) && canImport(Combine)
1010
import Combine
1111
import Foundation
1212

Sources/Subjects/ReplaySubject.swift

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88

99
#if canImport(Combine)
1010
import Combine
11+
import Foundation
1112

1213
/// A `ReplaySubject` is a subject that can buffer one or more values. It stores value events, up to its `bufferSize` in a
1314
/// first-in-first-out manner and then replays it to

0 commit comments

Comments
 (0)