Fix warning -Wgnu-zero-variadic-macro-arguments (#1384)

This commit is contained in:
Lectem 2018-05-07 02:21:54 +02:00 committed by Branimir Karadžić
parent e74a5d7843
commit 8897d91d2f
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@
//---- Define assertion handler. Defaults to calling assert().
#include <assert.h>
#define IM_ASSERT(_EXPR, ...) assert(_EXPR)
#define IM_ASSERT(_EXPR) assert(_EXPR)
//---- Define attributes of all API symbols declarations, e.g. for DLL under Windows.
//#define IMGUI_API __declspec( dllexport )