1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 06:07:34 +00:00

LibLine: Switch all files to use east-const

This commit is contained in:
Ali Mohammad Pur 2021-12-14 14:41:18 +03:30 committed by Ali Mohammad Pur
parent 2338d5fcda
commit 4458cc249e
10 changed files with 62 additions and 62 deletions

View file

@ -18,7 +18,7 @@ void clear_to_end_of_line(OutputStream&);
void clear_lines(size_t count_above, size_t count_below, OutputStream&);
void move_relative(int x, int y, OutputStream&);
void move_absolute(u32 x, u32 y, OutputStream&);
void apply_style(const Style&, OutputStream&, bool is_starting = true);
void apply_style(Style const&, OutputStream&, bool is_starting = true);
}
}