From 54db4ab215a2ea6536be606abcf2924f3826758d Mon Sep 17 00:00:00 2001 From: Bananymous Date: Tue, 28 May 2024 16:01:41 +0300 Subject: [PATCH] BAN: Increase BAN::Function storage size to 8 pointers --- BAN/include/BAN/Function.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BAN/include/BAN/Function.h b/BAN/include/BAN/Function.h index c498537f..94e083d7 100644 --- a/BAN/include/BAN/Function.h +++ b/BAN/include/BAN/Function.h @@ -141,7 +141,7 @@ namespace BAN }; private: - static constexpr size_t m_size = sizeof(void*) * 5; + static constexpr size_t m_size = sizeof(void*) * 8; alignas(CallableBase) uint8_t m_storage[m_size] { 0 }; };