From bae32567c339e3c45d86cd675366c45cdce1cb4a Mon Sep 17 00:00:00 2001 From: ocornut Date: Sat, 21 Mar 2015 10:04:10 +0000 Subject: [PATCH] Fixed unused parameter warning with empty IME handler #173 --- imgui.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/imgui.cpp b/imgui.cpp index 9474a78d..b0953da5 100644 --- a/imgui.cpp +++ b/imgui.cpp @@ -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) { }