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
Motivation:
I accidentally put in the wrong check for A/A, thanks @theMomax for
spotting!
Modification:
Fix the check to be
```
#if compiler(>=5.4) // we cannot write this on one line with `&&` because Swift 5.0 doesn't like it...
#if compiler(>=5.4) && $AsyncAwait
```
which works on Swift 5.0+.
Result:
Correct checks.
0 commit comments