devxoul / Then

✨ Super sweet syntactic sugar for Swift initializers
MIT License
4.18k stars 290 forks source link

Xcode 8 beta 6: Removed deprecated `@noescape`s #32

Closed capnslipp closed 8 years ago

capnslipp commented 8 years ago

As of Xcode 8b6's Swift 3.0, closures are now non-escaping by default, so the @noescape keyword is no longer necessary, and deprecated (Xcode now emits on usages warning: @noescape is the default and is deprecated).  More info on this change at https://github.com/apple/swift-evolution/blob/master/proposals/0103-make-noescape-default.md and http://adcdownload.apple.com/Developer_Tools/Xcode_8_beta_6/Release_Notes_for_Xcode_8_beta_6.pdf .

devxoul commented 8 years ago

This is cool. Thanks!