! @brief create a binary writer @param[in] adapter output adapter to write to */
| 14964 | @param[in] adapter output adapter to write to |
| 14965 | */ |
| 14966 | explicit binary_writer(output_adapter_t<CharType> adapter) : oa(std::move(adapter)) |
| 14967 | { |
| 14968 | JSON_ASSERT(oa); |
| 14969 | } |
| 14970 | |
| 14971 | /*! |
| 14972 | @param[in] j JSON value to serialize |
nothing calls this directly
no outgoing calls
no test coverage detected