File tree 2 files changed +5
-0
lines changed
2 files changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -119,6 +119,7 @@ pub(crate) fn hangul_decomposition_length(s: char) -> usize {
119
119
// Compose a pair of Hangul Jamo
120
120
#[ allow( unsafe_code) ]
121
121
#[ inline( always) ]
122
+ #[ allow( ellipsis_inclusive_range_patterns) ]
122
123
fn compose_hangul ( a : char , b : char ) -> Option < char > {
123
124
let ( a, b) = ( a as u32 , b as u32 ) ;
124
125
match ( a, b) {
Original file line number Diff line number Diff line change @@ -19217,6 +19217,7 @@ pub(crate) const COMBINING_MARK_KV: &[u32] = &[
19217
19217
19218
19218
19219
19219
#[ inline]
19220
+ #[ allow( ellipsis_inclusive_range_patterns) ]
19220
19221
pub fn qc_nfc ( c : char ) -> IsNormalized {
19221
19222
match c {
19222
19223
'\u{0340}' ...'\u{0341}' => No ,
@@ -19340,6 +19341,7 @@ pub fn qc_nfc(c: char) -> IsNormalized {
19340
19341
}
19341
19342
19342
19343
#[ inline]
19344
+ #[ allow( ellipsis_inclusive_range_patterns) ]
19343
19345
pub fn qc_nfkc ( c : char ) -> IsNormalized {
19344
19346
match c {
19345
19347
'\u{00A0}' => No ,
@@ -19776,6 +19778,7 @@ pub fn qc_nfkc(c: char) -> IsNormalized {
19776
19778
}
19777
19779
19778
19780
#[ inline]
19781
+ #[ allow( ellipsis_inclusive_range_patterns) ]
19779
19782
pub fn qc_nfd ( c : char ) -> IsNormalized {
19780
19783
match c {
19781
19784
'\u{00C0}' ...'\u{00C5}' => No ,
@@ -20025,6 +20028,7 @@ pub fn qc_nfd(c: char) -> IsNormalized {
20025
20028
}
20026
20029
20027
20030
#[ inline]
20031
+ #[ allow( ellipsis_inclusive_range_patterns) ]
20028
20032
pub fn qc_nfkd ( c : char ) -> IsNormalized {
20029
20033
match c {
20030
20034
'\u{00A0}' => No ,
You can’t perform that action at this time.
0 commit comments