removed spaces

This commit is contained in:
IsiGebauer 2025-01-12 22:28:24 +01:00
parent 5af348e3b8
commit afc4f24703
No known key found for this signature in database
GPG key ID: 65BE6ED421A3F911

View file

@ -50,7 +50,7 @@ std::string JoinPath(std::string const & folder, Args &&... args)
template <typename... Args>
std::string JoinPath(std::string const & dir, std::string const & fileOrDir, Args &&... args)
{
ASSERT(!dir.empty(), ("JoinPath dir is empty"));
ASSERT(!dir.empty(), ("JoinPath dir is empty"));
ASSERT(!fileOrDir.empty(), ("JoinPath fileOrDir is empty"));
return impl::JoinPath(dir, fileOrDir, std::forward<Args>(args)...);
}