| 2104 | , reader_(features) |
| 2105 | {} |
| 2106 | bool parse( |
| 2107 | char const* beginDoc, char const* endDoc, |
| 2108 | Value* root, std::string* errs) { |
| 2109 | bool ok = reader_.parse(beginDoc, endDoc, *root, collectComments_); |
| 2110 | if (errs) { |
| 2111 | *errs = reader_.getFormattedErrorMessages(); |
| 2112 | } |
| 2113 | return ok; |
| 2114 | } |
| 2115 | }; |
| 2116 | |
| 2117 | CharReaderBuilder::CharReaderBuilder() |
nothing calls this directly
no test coverage detected