! @brief create a binary reader @param[in] adapter input adapter to read from */
| 7710 | @param[in] adapter input adapter to read from |
| 7711 | */ |
| 7712 | explicit binary_reader(InputAdapterType&& adapter) : ia(std::move(adapter)) |
| 7713 | { |
| 7714 | (void)detail::is_sax_static_asserts<SAX, BasicJsonType> {}; |
| 7715 | } |
| 7716 | |
| 7717 | // make class move-only |
| 7718 | binary_reader(const binary_reader&) = delete; |
nothing calls this directly
no outgoing calls
no test coverage detected