From 215ec63abb2bd015b63e84865bd9600d3ecdc508 Mon Sep 17 00:00:00 2001 From: Brendan Hansknecht Date: Sun, 22 Nov 2020 13:46:12 -0800 Subject: [PATCH] Fix some nit clippy complaints --- compiler/gen_dev/src/lib.rs | 2 +- compiler/gen_dev/src/x86_64/mod.rs | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/compiler/gen_dev/src/lib.rs b/compiler/gen_dev/src/lib.rs index 342885eb1c..25dca3c690 100644 --- a/compiler/gen_dev/src/lib.rs +++ b/compiler/gen_dev/src/lib.rs @@ -13,7 +13,7 @@ use bumpalo::{collections::Vec, Bump}; use object::write::Object; -use roc_collections::all::{ImSet, MutMap, MutSet}; +use roc_collections::all::{MutMap, MutSet}; use roc_module::ident::TagName; use roc_module::low_level::LowLevel; use roc_module::symbol::{Interns, Symbol}; diff --git a/compiler/gen_dev/src/x86_64/mod.rs b/compiler/gen_dev/src/x86_64/mod.rs index 7919264b3b..72aa3b5d95 100644 --- a/compiler/gen_dev/src/x86_64/mod.rs +++ b/compiler/gen_dev/src/x86_64/mod.rs @@ -3,7 +3,6 @@ use bumpalo::collections::Vec; use roc_collections::all::{ImSet, MutMap, MutSet}; use roc_module::symbol::Symbol; use roc_mono::ir::{Literal, Stmt}; -use roc_mono::layout::Layout; use target_lexicon::{CallingConvention, Triple}; mod asm;