fs/Path: add operator/(Path,Path)

Modeled after std::filesystem::operator/() from C++17.
This commit is contained in:
Max Kellermann
2018-07-17 17:01:02 +02:00
parent 79e89eb23b
commit 99d5b61698
14 changed files with 40 additions and 32 deletions

View File

@@ -138,7 +138,7 @@ LoadPlaylistFileInfo(PlaylistInfo &info,
return false;
FileInfo fi;
if (!GetFileInfo(AllocatedPath::Build(parent_path_fs, name_fs), fi) ||
if (!GetFileInfo(parent_path_fs / name_fs, fi) ||
!fi.IsRegular())
return false;