1
0
Fork 0
mirror of https://github.com/ocornut/imgui.git synced 2026-01-15 00:44:20 +00:00

Fixed unused parameter warning with empty IME handler #173

This commit is contained in:
ocornut 2015-03-21 10:04:10 +00:00
parent 8f90238e53
commit bae32567c3

View file

@ -8813,7 +8813,7 @@ static void ImeSetInputScreenPosFn_DefaultImpl(int x, int y)
#else
static void ImeSetInputScreenPosFn_DefaultImpl(int x, int y)
static void ImeSetInputScreenPosFn_DefaultImpl(int, int)
{
}