-
Notifications
You must be signed in to change notification settings - Fork 333
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
Fix Xcode 10.2 warnings #130
Conversation
'public' modifier is redundant for instance method declared in a public extension
ORGANIZATIONNAME = "Glazed Donut, LLC."; | ||
TargetAttributes = { | ||
8A569F3F1E6B3E50008BE2AC = { | ||
CreatedOnToolsVersion = 8.2.1; | ||
LastSwiftMigration = 0900; | ||
LastSwiftMigration = 1020; |
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.
I didn't do the Swift migration, obviously. I just cleared the Remind Me box so that it wouldn't show up as a warning.
hasScannedForEncodings = 0; | ||
knownRegions = ( | ||
en, | ||
Base, |
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.
Xcode 10.2 is pretty insistent on these localization changes.
@@ -23,7 +23,7 @@ public protocol DownASTRenderable: DownRenderable { | |||
func toAST(_ options: DownOptions) throws -> UnsafeMutablePointer<cmark_node> | |||
} | |||
|
|||
public extension DownASTRenderable { | |||
extension DownASTRenderable { |
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.
Since the methods in this extension are public
, marking this as public
too is a warning in the Swift 5 compiler.
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.
Thanks for this @mdiep !
No description provided.