mirror of
https://github.com/bkaradzic/bgfx.git
synced 2026-08-26 04:58:21 +00:00
The macro `BGFX_HANDLE` is used the following way `BGFX_HANDLE(DynamicIndexBufferHandle);`, however it creates an error when using -Werror=pedantic with GCC since the `;` is unneeded. I removed the `;` as I can't silence this warning without removing pendantic as a whole.