| 232 | } |
| 233 | |
| 234 | void PushBack(Type digit) { |
| 235 | CEREAL_RAPIDJSON_ASSERT(count_ < kCapacity); |
| 236 | digits_[count_++] = digit; |
| 237 | } |
| 238 | |
| 239 | static uint64_t ParseUint64(const char* begin, const char* end) { |
| 240 | uint64_t r = 0; |
nothing calls this directly
no outgoing calls
no test coverage detected