From 5f7885749c4d7e48869b1fc0be4d430601cdbbfa Mon Sep 17 00:00:00 2001 From: Aaron Hill Date: Wed, 27 Sep 2017 20:29:44 -0400 Subject: Use clippy = "*", update, and fix some warnings (#796) Because there are so many clippy warnings in the current codebase, this commit removes '#![cfg_attr(feature = "clippy", deny(clippy))]', to make it easier to fix warnings incrementally. --- font/src/lib.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'font/src') diff --git a/font/src/lib.rs b/font/src/lib.rs index 4d63c7f3..401a29c0 100644 --- a/font/src/lib.rs +++ b/font/src/lib.rs @@ -30,8 +30,9 @@ extern crate core_foundation; extern crate core_foundation_sys; #[cfg(target_os = "macos")] extern crate core_graphics; - +#[cfg(target_os = "macos")] extern crate euclid; + extern crate libc; #[cfg(not(target_os = "macos"))] -- cgit