浏览代码

Use NK_UNUSED macro

Co-authored-by: Rob Loach <[email protected]>
Andrew Kravchuk 3 年之前
父节点
当前提交
5ea1a668cb
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      demo/allegro5/nuklear_allegro5.h

+ 1 - 1
demo/allegro5/nuklear_allegro5.h

@@ -98,7 +98,7 @@ NK_API void nk_allegro5_del_image(struct nk_image* image)
 static float
 static float
 nk_allegro5_font_get_text_width(nk_handle handle, float height, const char *text, int len)
 nk_allegro5_font_get_text_width(nk_handle handle, float height, const char *text, int len)
 {
 {
-    (void)height;
+    NK_UNUSED(height);
     NkAllegro5Font *font = (NkAllegro5Font*)handle.ptr;
     NkAllegro5Font *font = (NkAllegro5Font*)handle.ptr;
     if (!font || !text) {
     if (!font || !text) {
         return 0;
         return 0;