diff options
| author | Rémi Verschelde <rverschelde@gmail.com> | 2019-04-05 16:12:45 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-04-05 16:12:45 +0200 |
| commit | a61ad365f526e7acdbc556abc5678cd225e120d7 (patch) | |
| tree | 676bce820159900632ec4d239f60c6edd9230e9b /editor/plugins/script_text_editor.cpp | |
| parent | 696be497284e95e4ba70c88ff52bc6255af81bb8 (diff) | |
| parent | fc370b3feb419fdc1a8139bdf01f1dacf868ca1f (diff) | |
Merge pull request #27677 from akien-mga/Wimplicit-fallthrough
Fix -Wimplicit-fallthrough warnings from GCC 8
Diffstat (limited to 'editor/plugins/script_text_editor.cpp')
| -rw-r--r-- | editor/plugins/script_text_editor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/plugins/script_text_editor.cpp b/editor/plugins/script_text_editor.cpp index 8c3f8fd3e8..9fc42e3862 100644 --- a/editor/plugins/script_text_editor.cpp +++ b/editor/plugins/script_text_editor.cpp @@ -910,7 +910,7 @@ void ScriptTextEditor::_edit_option(int p_op) { tx->set_line_as_breakpoint(line, dobreak); ScriptEditor::get_singleton()->get_debugger()->set_breakpoint(script->get_path(), line + 1, dobreak); } - } + } break; case DEBUG_GOTO_NEXT_BREAKPOINT: { List<int> bpoints; |