diff options
author | Manish Goregaokar <manishsmail@gmail.com> | 2017-01-06 20:44:51 -0800 |
---|---|---|
committer | Manish Goregaokar <manishsmail@gmail.com> | 2017-01-06 20:44:51 -0800 |
commit | 4e1f4c8cd7180606156b71ad0222f60e4559f2b3 (patch) | |
tree | 28d7a983f5639270976de1f794cc54cb349ea4a8 /src/main.rs | |
parent | 49187d53f2f8b7cfca9105c3fb00d7c29e2a457b (diff) | |
download | alacritty-4e1f4c8cd7180606156b71ad0222f60e4559f2b3.tar.gz alacritty-4e1f4c8cd7180606156b71ad0222f60e4559f2b3.zip |
Clippy fixes!
Diffstat (limited to 'src/main.rs')
-rw-r--r-- | src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs index d53daf0f..f6ccc966 100644 --- a/src/main.rs +++ b/src/main.rs @@ -13,8 +13,8 @@ // limitations under the License. // //! Alacritty - The GPU Enhanced Terminal -#![feature(plugin)] #![cfg_attr(feature = "clippy", plugin(clippy))] +#![cfg_attr(feature = "clippy", feature(plugin))] #[macro_use] extern crate alacritty; |