Fix some warnings

This commit is contained in:
Jérôme Leclercq
2020-10-30 23:08:27 +01:00
parent e5cd461bae
commit 73e86407b3
2 changed files with 4 additions and 1 deletions

View File

@@ -18,7 +18,10 @@ namespace Nz
if constexpr (std::is_same_v<T, std::decay_t<First>>)
return std::forward<First>(first);
else
{
NazaraUnused(first);
return Get(std::forward<Args>(args)...);
}
}
static auto Get()