We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 529891c commit 0319bdcCopy full SHA for 0319bdc
stdlib/public/core/IntegerParsing.swift
@@ -84,10 +84,10 @@ internal func _parseASCII<Result: FixedWidthInteger>(
84
85
@_alwaysEmitIntoClient
86
internal func _parseASCII<S: StringProtocol, Result: FixedWidthInteger>(
87
- _ text: S, radix: Int
+ _ text: S, radix: Int
88
) -> Result? {
89
- var str = String(text)
90
- return str.withUTF8 { _parseASCII($0, radix: radix) }
+ var str = String(text)
+ return str.withUTF8 { _parseASCII($0, radix: radix) }
91
}
92
93
extension FixedWidthInteger {
0 commit comments