[*] this should've never been constexpr

This commit is contained in:
Reece Wilson 2023-04-17 15:32:13 +01:00
parent 9a28cd6862
commit b61015a6a5

View File

@ -8,7 +8,7 @@
#pragma once
template <typename T, typename ... Args>
constexpr bool AuListFromArgs(T &list, Args && ... args)
bool AuListFromArgs(T &list, Args && ... args)
{
constexpr auto end = sizeof...(Args);
if (!AuTryResize(list, end))