mirror of
https://github.com/NoelFB/blah.git
synced 2024-11-29 17:08:56 +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>
|
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)...));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user