| 18 | int parent_dir_fd; |
| 19 | |
| 20 | input_file(dio::istream &&stream_p, std::string &&file_name_p, int line_num_p, int parent_dir_fd_p) : |
| 21 | stream(std::move(stream_p)), file_name(std::move(file_name_p)), line_num(line_num_p), |
| 22 | parent_dir_fd(parent_dir_fd_p) |
| 23 | {} |
| 24 | |
| 25 | ~input_file() noexcept |
| 26 | { |
nothing calls this directly
no outgoing calls
no test coverage detected