Upgrade to rustc 1.43.0-nightly (5d04ce67f 2020-02-13)

This commit is contained in:
Simon Sapin 2020-02-14 10:58:04 +01:00
parent db4f27f361
commit 708d3737df
9 changed files with 53 additions and 46 deletions

View file

@ -135,7 +135,7 @@ impl FontInfo {
let strings = table.strings().unwrap();
let family = strings[family_index].clone();
let face = strings[face_index].clone();
((family, face))
(family, face)
} else {
return Err(());
}
@ -145,7 +145,7 @@ impl FontInfo {
let strings = table.strings().unwrap();
let family = strings[family_index].clone();
let face = strings[face_index].clone();
((family, face))
(family, face)
} else {
return Err(());
}