| 74 | } |
| 75 | |
| 76 | fs::path Path::MakeRelative(fs::path const& path, std::string_view token) const { |
| 77 | return MakeRelative(path, paths[checked_find_token(token)]); |
| 78 | } |
| 79 | |
| 80 | fs::path Path::MakeRelative(fs::path const& path, fs::path const& base) const { |
| 81 | if (path.empty() || base.empty()) return path; |