mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-30 13:19:47 +00:00
LibGUI: Mark compilation-unit-only functions as static
This enables a nice warning in case a function becomes dead code.
This commit is contained in:
committed by
Andreas Kling
parent
7cb2b344c0
commit
1396ce8a9b
@@ -633,7 +633,7 @@ void TextEditor::move_selected_lines_down()
|
||||
update();
|
||||
}
|
||||
|
||||
int strcmp_utf32(const u32* s1, const u32* s2, size_t n)
|
||||
static int strcmp_utf32(const u32* s1, const u32* s2, size_t n)
|
||||
{
|
||||
while (n-- > 0) {
|
||||
if (*s1++ != *s2++)
|
||||
|
||||
Reference in New Issue
Block a user