1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 04:57:44 +00:00

Everywhere: Run clang-format

This commit is contained in:
Idan Horowitz 2022-04-01 20:58:27 +03:00 committed by Linus Groh
parent 0376c127f6
commit 086969277e
1665 changed files with 8479 additions and 8479 deletions

View file

@ -1347,7 +1347,7 @@ void Terminal::inject_string(StringView str)
void Terminal::emit_string(StringView string)
{
m_client.emit((const u8*)string.characters_without_null_termination(), string.length());
m_client.emit((u8 const*)string.characters_without_null_termination(), string.length());
}
void Terminal::handle_key_press(KeyCode key, u32 code_point, u8 flags)
@ -1657,7 +1657,7 @@ void Terminal::invalidate_cursor()
active_buffer()[cursor_row()].set_dirty(true);
}
Attribute Terminal::attribute_at(const Position& position) const
Attribute Terminal::attribute_at(Position const& position) const
{
if (!position.is_valid())
return {};