| 68 | struct ParseIntHandler : BaseReaderHandler<UTF8<>, ParseIntHandler> { |
| 69 | ParseIntHandler() : step_(0), actual_() {} |
| 70 | bool Default() { ADD_FAILURE(); return false; } |
| 71 | bool Int(int i) { actual_ = i; step_++; return true; } |
| 72 | |
| 73 | unsigned step_; |
nothing calls this directly
no outgoing calls
no test coverage detected