BAN: increase function size to 5 * sizeof(void*)

This commit is contained in:
Bananymous 2023-08-22 14:52:03 +03:00
parent 2dcd4ed131
commit e33bf62bba
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*) * 4;
static constexpr size_t m_size = sizeof(void*) * 5;
alignas(CallableBase) uint8_t m_storage[m_size] { 0 };
};