! @param[in, out] r reference to a JSON value that is manipulated while parsing @param[in] allow_exceptions_ whether parse errors yield exceptions */
| 5340 | @param[in] allow_exceptions_ whether parse errors yield exceptions |
| 5341 | */ |
| 5342 | explicit json_sax_dom_parser(BasicJsonType& r, const bool allow_exceptions_ = true) |
| 5343 | : root(r), allow_exceptions(allow_exceptions_) |
| 5344 | {} |
| 5345 | |
| 5346 | // make class move-only |
| 5347 | json_sax_dom_parser(const json_sax_dom_parser&) = delete; |
nothing calls this directly
no outgoing calls
no test coverage detected