Skip to content

Commit f9bc94b

Browse files
committed
Fix “type alias 'SubSequence' circularly references itself” in Xcode 8.2.
1 parent f5b791d commit f9bc94b

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

Sources/Deque.swift

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,6 @@ extension Deque: RandomAccessCollection, MutableCollection {
9393
public typealias Index = Int
9494
public typealias Indices = CountableRange<Int>
9595
public typealias Iterator = IndexingIterator<Deque<Element>>
96-
public typealias SubSequence = RangeReplaceableRandomAccessSlice<Deque<Element>>
9796

9897
/// The number of elements currently stored in this deque.
9998
public var count: Int { return buffer.count }

0 commit comments

Comments
 (0)