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