| 94 | |
| 95 | struct ParseUint64Handler : BaseReaderHandler<UTF8<>, ParseUint64Handler> { |
| 96 | ParseUint64Handler() : step_(0), actual_() {} |
| 97 | bool Default() { ADD_FAILURE(); return false; } |
| 98 | bool Uint64(uint64_t i) { actual_ = i; step_++; return true; } |
| 99 |
nothing calls this directly
no outgoing calls
no test coverage detected