| 2317 | { |
| 2318 | } |
| 2319 | bool parse(char const *beginDoc, char const *endDoc, Value *root, String *errs) override |
| 2320 | { |
| 2321 | bool ok = reader_.parse(beginDoc, endDoc, *root, collectComments_); |
| 2322 | if (errs) |
| 2323 | { |
| 2324 | *errs = reader_.getFormattedErrorMessages(); |
| 2325 | } |
| 2326 | return ok; |
| 2327 | } |
| 2328 | }; |
| 2329 | |
| 2330 | CharReaderBuilder::CharReaderBuilder() { setDefaults(&settings_); } |
nothing calls this directly
no test coverage detected