| 16 | } |
| 17 | |
| 18 | std::filesystem::path resolve_case_path( |
| 19 | const std::filesystem::path & base_dir, |
| 20 | const std::string & value) { |
| 21 | std::filesystem::path path(value); |
| 22 | return path.is_absolute() ? path : base_dir / path; |
| 23 | } |
| 24 | |
| 25 | void set_option_from_json_field( |
| 26 | std::unordered_map<std::string, std::string> & options, |
no outgoing calls
no test coverage detected