We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ba7802e commit f6fbd11Copy full SHA for f6fbd11
src/swift/Time.swift
@@ -76,7 +76,7 @@ public struct DispatchWallTime : Comparable {
76
77
public func <(a: DispatchWallTime, b: DispatchWallTime) -> Bool {
78
if a.rawValue == ~0 || b.rawValue == ~0 { return false }
79
- return -Int64(a.rawValue) < -Int64(b.rawValue)
+ return -Int64(bitPattern: a.rawValue) < -Int64(bitPattern: b.rawValue)
80
}
81
82
public func ==(a: DispatchWallTime, b: DispatchWallTime) -> Bool {
0 commit comments