In preparation of raising -Wimplicit-fallthrough to 5, replace all fall-through comments with the fallthrough attribute pseudo-keyword.
Signed-off-by: Emmanouil Pitsidianakis <manos.pitsidiana...@linaro.org> --- ui/win32-kbd-hook.c | 7 ------- 1 file changed, 7 deletions(-) diff --git a/ui/win32-kbd-hook.c b/ui/win32-kbd-hook.c index 1ac237db9e..3c5c3fc597 100644 --- a/ui/win32-kbd-hook.c +++ b/ui/win32-kbd-hook.c @@ -26,19 +26,12 @@ static LRESULT CALLBACK keyboard_hook_cb(int code, WPARAM wparam, LPARAM lparam) switch (hooked->vkCode) { case VK_CAPITAL: - /* fall through */ case VK_SCROLL: - /* fall through */ case VK_NUMLOCK: - /* fall through */ case VK_LSHIFT: - /* fall through */ case VK_RSHIFT: - /* fall through */ case VK_RCONTROL: - /* fall through */ case VK_LMENU: - /* fall through */ case VK_RMENU: break; -- 2.39.2