! @brief create a binary reader @param[in] adapter input adapter to read from */
| 6382 | @param[in] adapter input adapter to read from |
| 6383 | */ |
| 6384 | explicit binary_reader(input_adapter_t adapter) : ia(std::move(adapter)) |
| 6385 | { |
| 6386 | (void)detail::is_sax_static_asserts<SAX, BasicJsonType> {}; |
| 6387 | assert(ia); |
| 6388 | } |
| 6389 | |
| 6390 | /*! |
| 6391 | @param[in] format the binary format to parse |
nothing calls this directly
no outgoing calls
no test coverage detected