diff options
author | Simon Sapin <simon.sapin@exyr.org> | 2020-02-14 10:58:04 +0100 |
---|---|---|
committer | Simon Sapin <simon.sapin@exyr.org> | 2020-02-14 12:27:14 +0100 |
commit | 708d3737df79e41dbd4d1e172526c32c775e46bc (patch) | |
tree | e52c82747dca8d3294b30475b37c4b756d79b0e7 /components/gfx/platform/windows/font.rs | |
parent | db4f27f3613c18ed7a28e787ea32d551d2cffb31 (diff) | |
download | servo-708d3737df79e41dbd4d1e172526c32c775e46bc.tar.gz servo-708d3737df79e41dbd4d1e172526c32c775e46bc.zip |
Upgrade to rustc 1.43.0-nightly (5d04ce67f 2020-02-13)
Diffstat (limited to 'components/gfx/platform/windows/font.rs')
-rw-r--r-- | components/gfx/platform/windows/font.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/gfx/platform/windows/font.rs b/components/gfx/platform/windows/font.rs index 7ee36b91aa8..b933bdfb975 100644 --- a/components/gfx/platform/windows/font.rs +++ b/components/gfx/platform/windows/font.rs @@ -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(()); } |