| 268 | } |
| 269 | |
| 270 | bool OrderedCode::ReadString(StringPiece* src, string* result) { |
| 271 | return ReadStringInternal(src, result); |
| 272 | } |
| 273 | |
| 274 | bool OrderedCode::ReadNumIncreasing(StringPiece* src, uint64* result) { |
| 275 | if (src->empty()) { |
no test coverage detected