! @brief create a binary writer @param[in] adapter output adapter to write to */
| 12761 | @param[in] adapter output adapter to write to |
| 12762 | */ |
| 12763 | explicit binary_writer(output_adapter_t<CharType> adapter) : oa(adapter) |
| 12764 | { |
| 12765 | JSON_ASSERT(oa); |
| 12766 | } |
| 12767 | |
| 12768 | /*! |
| 12769 | @param[in] j JSON value to serialize |
nothing calls this directly
no outgoing calls
no test coverage detected