diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2024-03-14 23:44:49 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2024-03-15 09:38:45 +0100 |
commit | 739fcd1b8c65a05112af02d0780c8930e3e8c42c (patch) | |
tree | 6bde31b6f05d0611e4bc98c944b90b7a8f6dcfd4 /modules/regex/SCsub | |
parent | 0175be8948d68cf90c55ce08e8e5bf46ea29ce40 (diff) | |
download | redot-engine-739fcd1b8c65a05112af02d0780c8930e3e8c42c.tar.gz |
pcre2: Remove unused sjlit files after last update
Follow-up to #89371.
Diffstat (limited to 'modules/regex/SCsub')
-rw-r--r-- | modules/regex/SCsub | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/regex/SCsub b/modules/regex/SCsub index 3e31e3c2d9..f5e2dd5dfc 100644 --- a/modules/regex/SCsub +++ b/modules/regex/SCsub @@ -29,7 +29,7 @@ if env["builtin_pcre2"]: "pcre2_extuni.c", "pcre2_find_bracket.c", "pcre2_jit_compile.c", - # "pcre2_jit_match.c", "pcre2_jit_misc.c", # these files are included in pcre2_jit_compile.c. + # "pcre2_jit_match.c", "pcre2_jit_misc.c", # Included in `pcre2_jit_compile.c`. "pcre2_maketables.c", "pcre2_match.c", "pcre2_match_data.c", @@ -44,6 +44,7 @@ if env["builtin_pcre2"]: "pcre2_substring.c", "pcre2_tables.c", "pcre2_ucd.c", + # "pcre2_ucptables.c", # Included in `pcre2_tables.c`. "pcre2_valid_utf.c", "pcre2_xclass.c", ] |