We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
This appears to show up 7 times in the current version.
One instance is specifically at AxisBase.swift:137.
AxisBase.swift:137
I am not a Swift developer (Obj-C for the win!), but it appears that this can be corrected by changing this:
if longest.characters.count < text.characters.count
to this:
if longest.count < text.count
The text was updated successfully, but these errors were encountered:
What's your swift version? As my swift 4 and xcode9 does not warn this at all.
/// A view of the string's contents as a collection of characters. public var characters: String.CharacterView
no sign of deprecated macro as well in my SDK. If it's beta version, we will migrate when released
Close for now.
Sorry, something went wrong.
Please re-open, Xcode 9.1 is now released and shows these warnings.
not updated yet; but you are welcome to file a PR for this update
No branches or pull requests
This appears to show up 7 times in the current version.
One instance is specifically at
AxisBase.swift:137
.I am not a Swift developer (Obj-C for the win!), but it appears that this can be corrected by changing this:
to this:
The text was updated successfully, but these errors were encountered: