diff options
author | Martin Algesten <martin@algesten.se> | 2017-05-14 10:44:34 +0200 |
---|---|---|
committer | Joe Wilm <jwilm@users.noreply.github.com> | 2017-05-31 09:30:54 -0700 |
commit | c1ab0042d4b0fa0ff2638d1c6e46d290a8e55b73 (patch) | |
tree | 379b0274f0a12d14181a73adf5c1d61fe765b66a | |
parent | cc3419df2b2fd8d455b288ed080222cb50a37591 (diff) | |
download | alacritty-c1ab0042d4b0fa0ff2638d1c6e46d290a8e55b73.tar.gz alacritty-c1ab0042d4b0fa0ff2638d1c6e46d290a8e55b73.zip |
avoid unused warning
-rw-r--r-- | font/src/lib.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/font/src/lib.rs b/font/src/lib.rs index 8428ec18..f04f00d8 100644 --- a/font/src/lib.rs +++ b/font/src/lib.rs @@ -34,6 +34,7 @@ extern crate core_graphics; extern crate euclid; extern crate libc; +#[cfg(not(target_os = "macos"))] #[macro_use] extern crate ffi_util; |