You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Building Apollo with Xcode 10.2 beta generates an error:
/path/to/project/apollo-ios/Sources/Apollo/Collections.swift:65:42: Cannot assign value of type 'EnumeratedSequence<[Key]>.Iterator' to type 'EnumeratedSequence<IndexingIterator<Array<Key>>>.Iterator'
To Reproduce
Steps to reproduce the behavior:
Open the project in Xcode 10.2 beta, using Swift 4 mode
Build the project
Expected behavior
The project builds
Environment(please complete the following information):
Apollo master branch
Xcode 10.2 beta
MacOS 10.14.3
Swift Toolchain Version: 4.2.1
Project's SWIFT_VERSION: 4 (as specified in Apollo.xcodeproj)
This was first reported to us by @samproc as an AWS AppSync iOS issue, but I've reproduced this on the latest master of Apollo as noted above.
Describe the bug
Building Apollo with Xcode 10.2 beta generates an error:
To Reproduce
Steps to reproduce the behavior:
Expected behavior
The project builds
Environment(please complete the following information):
master
branchSWIFT_VERSION
: 4 (as specified in Apollo.xcodeproj)This was first reported to us by @samproc as an AWS AppSync iOS issue, but I've reproduced this on the latest master of Apollo as noted above.
Related to this, the typealias
EnumeratedIterator
is deprecated, which affects the declaration & assignment ofkeyIterator
above.The text was updated successfully, but these errors were encountered: