-
Notifications
You must be signed in to change notification settings - Fork 795
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
support swift 5 #457
support swift 5 #457
Conversation
You also need change |
done |
Generated by 🚫 Danger |
Any chance this could get merged in and released? Would be nice to be rid of the build warnings in Xcode 10.2 |
|
@@ -78,6 +78,7 @@ extension SKPaymentTransactionState: CustomDebugStringConvertible { | |||
case .failed: return "failed" | |||
case .restored: return "restored" | |||
case .deferred: return "deferred" | |||
@unknown default: return "default" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Personally I think this would be better as unknown
?
@unknown default: return "default" | |
@unknown default: return "unknown" |
Converted the SwiftyStoreKit-iOS to swift 5