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 5805ef3 commit e2f96a0Copy full SHA for e2f96a0
Sources/SwiftProtobuf/TextFormatScanner.swift
@@ -95,7 +95,7 @@ private func uint32FromHexDigit(_ c: UInt8) -> UInt32? {
95
private func decodeString(_ s: String) -> String? {
96
97
// Helper to read 4 hex digits as a UInt32
98
- func read4HexDigits(_ i: inout IndexingIterator<String.UTF8View>) -> UInt32? {
+ func read4HexDigits(_ i: inout String.UTF8View.Iterator) -> UInt32? {
99
if let digit1 = i.next(),
100
let d1 = uint32FromHexDigit(digit1),
101
let digit2 = i.next(),
0 commit comments