| 28 | { |
| 29 | public: |
| 30 | FileInfo( |
| 31 | const std::filesystem::path& filePath, |
| 32 | std::vector<LineInfo>&& lineInfoColllection) |
| 33 | : filePath_{ filePath } |
| 34 | , lineInfoColllection_{ std::move(lineInfoColllection) } |
| 35 | {} |
| 36 | |
| 37 | const std::filesystem::path filePath_; |
| 38 | const std::vector<LineInfo> lineInfoColllection_; |
nothing calls this directly
no outgoing calls
no test coverage detected