diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2019-06-29 23:40:08 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-29 23:40:08 +0200 |
commit | b4aba3ae7c89b7d236d3efab459fb89b33c91a3c (patch) | |
tree | e9af0a7cc2ff9798a645157b6a7fb45f8a88ba2a /platform/windows/os_windows.cpp | |
parent | 9ca1a5af3e8186c396e5b8c74b2cebe1e25a65c9 (diff) | |
parent | 9f0c6a60095025cb7f67a36ffa81e8709d645a66 (diff) |
Merge pull request #30177 from hbina/use_FALLTHROUGH_macro
Applied some of FALLTHROUGH macro usage from #30122
Diffstat (limited to 'platform/windows/os_windows.cpp')
-rw-r--r-- | platform/windows/os_windows.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/platform/windows/os_windows.cpp b/platform/windows/os_windows.cpp index 5876a385c6..e535f6a148 100644 --- a/platform/windows/os_windows.cpp +++ b/platform/windows/os_windows.cpp @@ -843,8 +843,8 @@ LRESULT OS_Windows::WndProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam) if (wParam==VK_WIN) TODO wtf is this? meta_mem=uMsg==WM_KEYDOWN; */ - - } //fallthrough + FALLTHROUGH; + } case WM_CHAR: { ERR_BREAK(key_event_pos >= KEY_EVENT_BUFFER_SIZE); |