Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support Swift 5.1 toolchains #29

Merged
merged 1 commit into from
Jun 4, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion MobiusCore/Source/NoEffect.swift
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,14 @@ import Foundation
/// conformance is just to allow the type to be used where required. Such as with the `First` and `Next` data
/// structures.
public enum NoEffect: Equatable, Hashable {
public static func == (lhs: NoEffect, rhs: NoEffect) -> Bool { return true }
public static func == (lhs: NoEffect, rhs: NoEffect) -> Bool {
#if compiler(>=5.1)
// #if compiler(<5.1) doesn’t work in the Xcode 10.1 toolchain
#else
// This is required in earlier compiler versions, but a warning in newer ones
return true
#endif
}
public var hashValue: Int { return 0 }
public func hash(into hasher: inout Hasher) {}
}