diff options
author | David Hewitt <1939362+davidhewitt@users.noreply.github.com> | 2020-01-15 22:14:07 +0000 |
---|---|---|
committer | Christian Duerr <contact@christianduerr.com> | 2020-01-15 23:14:07 +0100 |
commit | f54aabfe9295902b6bbe0db115186ca26f1956b0 (patch) | |
tree | aebd591cfa1d14ec2a111064e501bb0a4d431145 /font/src/ft/fc/pattern.rs | |
parent | 7d1edf01c2d16eedbbfb652b1e57db0f819f12c0 (diff) | |
download | r-alacritty-f54aabfe9295902b6bbe0db115186ca26f1956b0.tar.gz r-alacritty-f54aabfe9295902b6bbe0db115186ca26f1956b0.tar.bz2 r-alacritty-f54aabfe9295902b6bbe0db115186ca26f1956b0.zip |
Update font crate to 2018 edition
Diffstat (limited to 'font/src/ft/fc/pattern.rs')
-rw-r--r-- | font/src/ft/fc/pattern.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/font/src/ft/fc/pattern.rs b/font/src/ft/fc/pattern.rs index 25007392..7d8d6430 100644 --- a/font/src/ft/fc/pattern.rs +++ b/font/src/ft/fc/pattern.rs @@ -18,7 +18,7 @@ use std::path::PathBuf; use std::ptr::{self, NonNull}; use std::str; -use foreign_types::{ForeignType, ForeignTypeRef}; +use foreign_types::{foreign_type, ForeignType, ForeignTypeRef}; use libc::{c_char, c_double, c_int}; use super::ffi::FcResultMatch; |