Skip to content

Commit 5328798

Browse files
committed
Replace the deprecated CountableRange with Range
1 parent 7d68f81 commit 5328798

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sources/Basic/OrderedSet.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
public struct OrderedSet<E: Hashable>: Equatable, Collection {
1414
public typealias Element = E
1515
public typealias Index = Int
16-
public typealias Indices = CountableRange<Int>
16+
public typealias Indices = Range<Int>
1717

1818
private var array: [Element]
1919
private var set: Set<Element>

0 commit comments

Comments
 (0)