| 104 | struct ParseDoubleHandler : BaseReaderHandler<UTF8<>, ParseDoubleHandler> { |
| 105 | ParseDoubleHandler() : step_(0), actual_() {} |
| 106 | bool Default() { ADD_FAILURE(); return false; } |
| 107 | bool Double(double d) { actual_ = d; step_++; return true; } |
| 108 | |
| 109 | unsigned step_; |
nothing calls this directly
no outgoing calls
no test coverage detected