| 19 | } |
| 20 | |
| 21 | void FormatContext::SetInputFilePath(std::string_view input) { |
| 22 | _inputPath = std::string(input); |
| 23 | } |
| 24 | |
| 25 | bool IsSubRelative(const std::filesystem::path &path, const std::filesystem::path &base) { |
| 26 | auto relative = std::filesystem::relative(path, base); |
no test coverage detected