| 59 | class ParallelFileReader : public Reader { |
| 60 | public: |
| 61 | explicit ParallelFileReader(std::string file_path) |
| 62 | : fd_(open(file_path.c_str(), O_RDONLY | O_BINARY)), |
| 63 | label_(std::move(file_path)) {} |
| 64 | |
| 65 | ~ParallelFileReader() override { |
| 66 | close(fd_); |
nothing calls this directly
no outgoing calls
no test coverage detected