From 2bf12a52d13227691dfc8ff3b2069b77d29bb967 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Tue, 22 Aug 2023 14:52:03 +0300 Subject: [PATCH] BAN: increase function size to 5 * sizeof(void*) --- 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 0e5f7d5f1f..85c8ed742e 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*) * 4; + static constexpr size_t m_size = sizeof(void*) * 5; alignas(CallableBase) uint8_t m_storage[m_size] { 0 }; };