Skip to content

Commit

Permalink
Resolves issue 2554 (#2554), "Missing imports warn 'this is an error …
Browse files Browse the repository at this point in the history
…in Swift 6'". (#2555)

Co-authored-by: Andrew Benson <db@nuclearcyborg.com>
  • Loading branch information
drewster99 and drewsterb committed Apr 20, 2024
1 parent 8f0f0a4 commit 34e361c
Show file tree
Hide file tree
Showing 10 changed files with 20 additions and 0 deletions.
2 changes: 2 additions & 0 deletions RxSwift/Observables/Buffer.swift
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
// Copyright © 2015 Krunoslav Zaher. All rights reserved.
//

import Foundation

extension ObservableType {

/**
Expand Down
2 changes: 2 additions & 0 deletions RxSwift/Observables/Debounce.swift
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
// Copyright © 2016 Krunoslav Zaher. All rights reserved.
//

import Foundation

extension ObservableType {

/**
Expand Down
2 changes: 2 additions & 0 deletions RxSwift/Observables/DelaySubscription.swift
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
// Copyright © 2015 Krunoslav Zaher. All rights reserved.
//

import Foundation

extension ObservableType {

/**
Expand Down
2 changes: 2 additions & 0 deletions RxSwift/Observables/Skip.swift
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
// Copyright © 2015 Krunoslav Zaher. All rights reserved.
//

import Foundation

extension ObservableType {

/**
Expand Down
2 changes: 2 additions & 0 deletions RxSwift/Observables/Take.swift
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
// Copyright © 2015 Krunoslav Zaher. All rights reserved.
//

import Foundation

extension ObservableType {

/**
Expand Down
2 changes: 2 additions & 0 deletions RxSwift/Observables/Timeout.swift
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
// Copyright © 2015 Krunoslav Zaher. All rights reserved.
//

import Foundation

extension ObservableType {

/**
Expand Down
2 changes: 2 additions & 0 deletions RxSwift/Observables/Window.swift
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
// Copyright © 2015 Krunoslav Zaher. All rights reserved.
//

import Foundation

extension ObservableType {

/**
Expand Down
2 changes: 2 additions & 0 deletions RxSwift/Schedulers/VirtualTimeScheduler.swift
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
// Copyright © 2015 Krunoslav Zaher. All rights reserved.
//

import Foundation

/// Base class for virtual time schedulers using a priority queue for scheduled items.
open class VirtualTimeScheduler<Converter: VirtualTimeConverterType>
: SchedulerType {
Expand Down
2 changes: 2 additions & 0 deletions RxSwift/Traits/Infallible/Infallible+Operators.swift
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
// Copyright © 2020 Krunoslav Zaher. All rights reserved.
//

import Foundation

// MARK: - Static allocation
extension InfallibleType {
/**
Expand Down
2 changes: 2 additions & 0 deletions RxSwift/Traits/PrimitiveSequence/PrimitiveSequence.swift
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
// Copyright © 2017 Krunoslav Zaher. All rights reserved.
//

import Foundation

/// Observable sequences containing 0 or 1 element.
public struct PrimitiveSequence<Trait, Element> {
let source: Observable<Element>
Expand Down

0 comments on commit 34e361c

Please sign in to comment.