BAN: Increase BAN::Function storage size to 8 pointers

This commit is contained in:
Bananymous 2024-05-28 16:01:41 +03:00
parent 5b5ccba247
commit 54db4ab215
1 changed files with 1 additions and 1 deletions

View File

@ -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 };
};