| 318 | } |
| 319 | |
| 320 | bool JSONReader::parseUInt(uint32_t& output) { |
| 321 | if (!_parser.parseUInt(output)) { |
| 322 | return false; |
| 323 | } |
| 324 | _parser.tryParseWhitespaces(); |
| 325 | return true; |
| 326 | } |
| 327 | |
| 328 | bool JSONReader::parseDouble(double& output) { |
| 329 | if (!_parser.parseDouble(output)) { |
nothing calls this directly
no test coverage detected