mirror of
https://github.com/NoelFB/blah.git
synced 2024-11-28 16:58:57 +08:00
fixed missing std::forward to Path::join
This commit is contained in:
parent
fb21ec869d
commit
c3a9548ffa
|
@ -42,7 +42,7 @@ namespace Blah
|
|||
template<typename ... 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)...));
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user