Update master to build with Xcode 9 beta 4, macOS 10.13, iOS 11, tvOS 11, and watchOS 4 SDKs.

This commit is contained in:
Mishal Shah
2017-07-28 11:17:59 -07:00
parent 2a18723b55
commit 64a77ca716
22 changed files with 1160 additions and 235 deletions

View File

@@ -30,7 +30,7 @@ extension AVCaptureSynchronizedDataCollection : Sequence {
public mutating func next() -> AVCaptureSynchronizedData? {
guard let nextAny = fastIterator.next() else { return nil }
return nextAny as! AVCaptureSynchronizedData
return (nextAny as! AVCaptureSynchronizedData)
}
}
}