We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 15acb0e commit 0959305Copy full SHA for 0959305
src/tools/unicode-table-generator/Cargo.toml
@@ -1,7 +1,7 @@
1
[package]
2
name = "unicode-table-generator"
3
version = "0.1.0"
4
-edition = "2021"
+edition = "2024"
5
6
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
7
src/tools/unicode-table-generator/src/raw_emitter.rs
@@ -272,7 +272,7 @@ impl Canonicalized {
272
// for canonical when possible.
273
while let Some((&to, _)) = mappings
274
.iter()
275
- .find(|(&to, _)| to == 0)
+ .find(|&(&to, _)| to == 0)
276
.or_else(|| mappings.iter().max_by_key(|m| m.1.len()))
277
{
278
// Get the mapping with the most entries. Currently, no mapping can
0 commit comments