BAN: Add getter for Function size

This commit is contained in:
Bananymous 2023-02-02 23:19:18 +02:00
parent c85b97abee
commit 2403df50bb
1 changed files with 2 additions and 0 deletions

View File

@ -64,6 +64,8 @@ namespace BAN
memset(m_storage, 0, m_size);
}
static constexpr size_t size() { return m_size; }
private:
struct CallableBase
{