xmartlabs / Eureka

Elegant iOS form builder in Swift
https://eurekacommunity.github.io
MIT License
11.78k stars 1.33k forks source link

Fix a compiler error in Xcode 13 when building for Catalyst #2162

Closed zacwest closed 3 years ago

zacwest commented 3 years ago

This occurs in Xcode 13.0 beta 1, but may not occur in later betas (we'll see). If this isn't fixed, it has an error:

❌  /Users/runner/work/iOS/iOS/Pods/Eureka/Source/Core/Cell.swift:55:34: ambiguous use of 'next'

            responder = responder?.next

Presumably this is an error in the compiler, but nonetheless is fixable by making it less ambiguous.

gossmer commented 3 years ago

This error happens in 13.1 with Monterey OS.

gossmer commented 3 years ago

This change does fix the problem. Can this be merged.

jurex commented 3 years ago

thanks!