Skip to content
Merged
Changes from 1 commit
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
2 changes: 1 addition & 1 deletion src/swift/Time.swift
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ private func toInt64Clamped(_ value: Double) -> Int64 {
/// let t1 = DispatchTimeInterval.seconds(Int.max)
/// let t2 = DispatchTimeInterval.milliseconds(Int.max)
/// let result = t1 == t2 // true
public enum DispatchTimeInterval: Equatable {
public enum DispatchTimeInterval: Equatable, Sendable {
case seconds(Int)
case milliseconds(Int)
case microseconds(Int)
Expand Down