mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-05-02 12:32:20 +02:00
LibUnicode: Remove unused field from UnicodeData generator
This commit is contained in:
committed by
Andreas Kling
parent
d7568b28b4
commit
f2f4980f15
Notes:
sideshowbarker
2024-07-17 23:19:14 +09:00
Author: https://github.com/trflynn89 Commit: https://github.com/SerenityOS/serenity/commit/f2f4980f157 Pull-request: https://github.com/SerenityOS/serenity/pull/11040 Reviewed-by: https://github.com/BenWiederhake
@@ -95,7 +95,6 @@ struct UnicodeData {
|
||||
Vector<String> conditions;
|
||||
|
||||
Vector<CodePointData> code_point_data;
|
||||
Vector<CodePointRange> code_point_ranges;
|
||||
|
||||
PropList general_categories;
|
||||
Vector<Alias> general_category_aliases;
|
||||
@@ -454,7 +453,6 @@ static void parse_unicode_data(Core::File& file, UnicodeData& unicode_data)
|
||||
VERIFY(code_point_range_start.has_value());
|
||||
|
||||
CodePointRange code_point_range { *code_point_range_start, data.code_point };
|
||||
unicode_data.code_point_ranges.append(code_point_range);
|
||||
assigned_code_points.append(code_point_range);
|
||||
|
||||
data.name = data.name.substring(1, data.name.length() - 8);
|
||||
|
||||
Reference in New Issue
Block a user