| 6122 | |
| 6123 | JSON_HEDLEY_NON_NULL(2) |
| 6124 | explicit file_input_adapter(std::FILE* f) noexcept |
| 6125 | : m_file(f) |
| 6126 | { |
| 6127 | JSON_ASSERT(m_file != nullptr); |
| 6128 | } |
| 6129 | |
| 6130 | // make class move-only |
| 6131 | file_input_adapter(const file_input_adapter&) = delete; |
no outgoing calls
no test coverage detected