| 2121 | , reader_(features) |
| 2122 | {} |
| 2123 | bool parse( |
| 2124 | char const* beginDoc, char const* endDoc, |
| 2125 | Value* root, JSONCPP_STRING* errs) JSONCPP_OVERRIDE { |
| 2126 | bool ok = reader_.parse(beginDoc, endDoc, *root, collectComments_); |
| 2127 | if (errs) { |
| 2128 | *errs = reader_.getFormattedErrorMessages(); |
| 2129 | } |
| 2130 | return ok; |
| 2131 | } |
| 2132 | }; |
| 2133 | |
| 2134 | CharReaderBuilder::CharReaderBuilder() |
nothing calls this directly
no test coverage detected