From b61015a6a5fabbdc28f3f4229344c5437d0c26a4 Mon Sep 17 00:00:00 2001 From: Reece Date: Mon, 17 Apr 2023 15:32:13 +0100 Subject: [PATCH] [*] this should've never been constexpr --- Include/auROXTL/auListUtils.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Include/auROXTL/auListUtils.hpp b/Include/auROXTL/auListUtils.hpp index 713b261..370b877 100644 --- a/Include/auROXTL/auListUtils.hpp +++ b/Include/auROXTL/auListUtils.hpp @@ -8,7 +8,7 @@ #pragma once template -constexpr bool AuListFromArgs(T &list, Args && ... args) +bool AuListFromArgs(T &list, Args && ... args) { constexpr auto end = sizeof...(Args); if (!AuTryResize(list, end))