Removed BX_STATIC_ASSERT. Not needed in C++17.

This commit is contained in:
Бранимир Караџић
2024-12-07 22:51:31 -08:00
parent 57a4fb1246
commit 3e9604c743
16 changed files with 48 additions and 51 deletions

View File

@@ -53,7 +53,7 @@ namespace bx
easeInOutBounce,
easeOutInBounce,
};
BX_STATIC_ASSERT(BX_COUNTOF(s_easeFunc) == Easing::Count);
static_assert(BX_COUNTOF(s_easeFunc) == Easing::Count);
EaseFn getEaseFunc(Easing::Enum _enum)
{