rust: fix lint warnings about mixed case hex literals

Ticket: #4593
pull/8073/head
Alice Akaki 2 years ago committed by Victor Julien
parent 4e90d17fd9
commit ccdc992a71

@ -39,7 +39,6 @@
#![allow(clippy::manual_find)]
#![allow(clippy::match_like_matches_macro)]
#![allow(clippy::match_ref_pats)]
#![allow(clippy::mixed_case_hex_literals)]
#![allow(clippy::module_inception)]
#![allow(clippy::needless_lifetimes)]
#![allow(clippy::needless_range_loop)]

@ -349,7 +349,7 @@ pub fn lcid_to_string<'a>(lcid: u32, default: &'a str) -> String {
0x0C50 => "mn-Mong-MN",
0x0C51 => "dz-BT",
0x0C5F => "tmz-MA",
0x0C6b => "quz-PE",
0x0C6B => "quz-PE",
0x1001 => "ar-LY",
0x1004 => "zh-SG",
0x1007 => "de-LU",
@ -415,8 +415,8 @@ pub fn lcid_to_string<'a>(lcid: u32, default: &'a str) -> String {
0x380C => "fr-MA",
0x3c01 => "ar-BH",
0x3c09 => "en-HK",
0x3c0A => "es-PY",
0x3c0C => "fr-HT",
0x3C0A => "es-PY",
0x3C0C => "fr-HT",
0x4001 => "ar-QA",
0x4009 => "en-IN",
0x400A => "es-BO",

Loading…
Cancel
Save