gcc fix warning (#2295)

error: extra ‘;’ [-Werror=pedantic]
This commit is contained in:
Cedric Guillemet
2020-10-23 16:44:18 +02:00
committed by GitHub
parent d4b518ecae
commit e06dd2435e
2 changed files with 3 additions and 3 deletions

View File

@@ -114,8 +114,8 @@ struct GlyphInfo
uint16_t regionIndex;
};
BGFX_HANDLE(TrueTypeHandle);
BGFX_HANDLE(FontHandle);
BGFX_HANDLE(TrueTypeHandle)
BGFX_HANDLE(FontHandle)
class FontManager
{

View File

@@ -8,7 +8,7 @@
#include "font_manager.h"
BGFX_HANDLE(TextBufferHandle);
BGFX_HANDLE(TextBufferHandle)
#define MAX_TEXT_BUFFER_COUNT 64