1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-28 08:35:09 +00:00

Everywhere: Remove needless trailing semi-colons after functions

This is a new option in clang-format-16.
This commit is contained in:
Timothy Flynn 2023-07-07 22:48:11 -04:00 committed by Linus Groh
parent aff81d318b
commit c911781c21
243 changed files with 483 additions and 481 deletions

View file

@ -1371,7 +1371,7 @@ void VimEditingEngine::switch_to_normal_mode()
m_previous_key = {};
clear_visual_mode_data();
m_motion.reset();
};
}
void VimEditingEngine::switch_to_insert_mode()
{
@ -1380,7 +1380,7 @@ void VimEditingEngine::switch_to_insert_mode()
m_previous_key = {};
clear_visual_mode_data();
m_motion.reset();
};
}
void VimEditingEngine::switch_to_visual_mode()
{
@ -1448,12 +1448,12 @@ void VimEditingEngine::clear_visual_mode_data()
void VimEditingEngine::move_half_page_up()
{
move_up(0.5);
};
}
void VimEditingEngine::move_half_page_down()
{
move_down(0.5);
};
}
void VimEditingEngine::yank(YankType type)
{
@ -1544,7 +1544,7 @@ void VimEditingEngine::move_to_previous_empty_lines_block()
TextPosition new_cursor = { line_idx, 0 };
m_editor->set_cursor(new_cursor);
};
}
void VimEditingEngine::move_to_next_empty_lines_block()
{
@ -1564,7 +1564,7 @@ void VimEditingEngine::move_to_next_empty_lines_block()
TextPosition new_cursor = { line_idx, 0 };
m_editor->set_cursor(new_cursor);
};
}
void VimEditingEngine::casefold_selection(Casing casing)
{