Skips a length-delimited value.
| 361 | private: |
| 362 | // Skips a length-delimited value. |
| 363 | static bool SkipBytes(CodedInputStream* input) { |
| 364 | uint32 length; |
| 365 | if (!input->ReadVarint32(&length)) { |
| 366 | return false; |
| 367 | } |
| 368 | return input->Skip(length); |
| 369 | } |
| 370 | |
| 371 | // Counts the number of packed varints in an array. The end of a varint is |
| 372 | // signaled by a value < 0x80, so counting them requires parsing the |
nothing calls this directly
no test coverage detected