diff options
author | Neil <nyamatongwe@gmail.com> | 2023-12-23 17:20:20 +1100 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2023-12-23 17:20:20 +1100 |
commit | d9f3e8f40f88bf287693cc5125119314b671f789 (patch) | |
tree | 20e75a6299717e799a0900f0348d4089128fe629 | |
parent | 988f56024b58cd4deba01200e247100c22faaa88 (diff) | |
download | scintilla-mirror-d9f3e8f40f88bf287693cc5125119314b671f789.tar.gz |
Add break to avoid warning from Visual Studio code analysis.rel-5-4-1
-rw-r--r-- | src/Editor.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Editor.cxx b/src/Editor.cxx index 8f29d3a8f..2d7d07e22 100644 --- a/src/Editor.cxx +++ b/src/Editor.cxx @@ -6099,7 +6099,7 @@ void Editor::SetSelectionMode(uptr_t wParam, bool setMoveExtends) { SetSelection(sel.RangeMain().caret, sel.RangeMain().anchor); // adjust current selection break; default: - ; + break; } InvalidateWholeSelection(); } |