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