| 763 | } |
| 764 | |
| 765 | std::string Path::JoinWindowsPath(const std::vector<std::string_view>& components) |
| 766 | { |
| 767 | return StringUtil::JoinString(components.begin(), components.end(), '\\'); |
| 768 | } |
| 769 | |
| 770 | std::vector<std::string_view> Path::SplitNativePath(const std::string_view path) |
| 771 | { |
nothing calls this directly
no test coverage detected