Fix unused vars warning

This commit is contained in:
Kovid Goyal 2018-07-12 07:05:30 +05:30
parent 851145e69e
commit 29dd766a67
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

2
glfw/input.c vendored
View File

@ -916,6 +916,8 @@ GLFWAPI void glfwUpdateIMEState(GLFWwindow* handle, int which, int a, int b, int
_GLFW_REQUIRE_INIT(); _GLFW_REQUIRE_INIT();
#if defined(_GLFW_X11) || defined(_GLFW_WAYLAND) #if defined(_GLFW_X11) || defined(_GLFW_WAYLAND)
_glfwPlatformUpdateIMEState(window, which, a, b, c, d); _glfwPlatformUpdateIMEState(window, which, a, b, c, d);
#else
(void)window; (void)which; (void)a; (void)b; (void)c; (void)d;
#endif #endif
} }