LibWeb: Resolve Unicode FIXME in forwardDelete

This commit is contained in:
Jelle Raaijmakers 2025-09-15 12:11:22 +02:00 committed by Tim Flynn
parent 82f56e30ed
commit b51cc00478
Notes: github-actions[bot] 2025-09-16 10:58:54 +00:00
3 changed files with 14 additions and 4 deletions

View file

@ -8,7 +8,6 @@
#include <AK/Forward.h>
#include <AK/Optional.h>
#include <AK/StringView.h>
#include <AK/Types.h>
#include <LibUnicode/Forward.h>
@ -20,6 +19,7 @@ bool code_point_has_general_category(u32 code_point, GeneralCategory general_cat
bool code_point_is_printable(u32 code_point);
bool code_point_has_control_general_category(u32 code_point);
bool code_point_has_letter_general_category(u32 code_point);
bool code_point_has_mark_general_category(u32 code_point);
bool code_point_has_number_general_category(u32 code_point);
bool code_point_has_punctuation_general_category(u32 code_point);
bool code_point_has_separator_general_category(u32 code_point);