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 18b4846 commit 27f5ccfCopy full SHA for 27f5ccf
formats/protobuf/commonMain/src/kotlinx/serialization/protobuf/internal/ProtobufReader.kt
@@ -76,7 +76,7 @@ internal class ProtobufReader(private val input: ByteArrayInput) {
76
}
77
78
fun skipSizeDelimited() {
79
- assertWireType(SIZE_DELIMITED)
+ assertWireType(ProtoWireType.SIZE_DELIMITED)
80
val length = decode32()
81
checkLength(length)
82
input.skipExactNBytes(length)
0 commit comments