fixed missing std::forward to Path::join

This commit is contained in:
Noel Berry 2021-03-08 11:05:18 -08:00
parent fb21ec869d
commit c3a9548ffa

View File

@ -42,7 +42,7 @@ namespace Blah
template<typename ... Args> template<typename ... Args>
FilePath join(const FilePath& a, const FilePath& b, const Args&... args) FilePath join(const FilePath& a, const FilePath& b, const Args&... args)
{ {
return join(a, join(b, args...)); return join(a, join(b, std::forward<Args>(args)...));
} }
} }
} }