Fix some nit clippy complaints

This commit is contained in:
Brendan Hansknecht 2020-11-22 13:46:12 -08:00
parent 7fd7407724
commit 215ec63abb
2 changed files with 1 additions and 2 deletions

View file

@ -13,7 +13,7 @@
use bumpalo::{collections::Vec, Bump}; use bumpalo::{collections::Vec, Bump};
use object::write::Object; 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::ident::TagName;
use roc_module::low_level::LowLevel; use roc_module::low_level::LowLevel;
use roc_module::symbol::{Interns, Symbol}; use roc_module::symbol::{Interns, Symbol};

View file

@ -3,7 +3,6 @@ use bumpalo::collections::Vec;
use roc_collections::all::{ImSet, MutMap, MutSet}; use roc_collections::all::{ImSet, MutMap, MutSet};
use roc_module::symbol::Symbol; use roc_module::symbol::Symbol;
use roc_mono::ir::{Literal, Stmt}; use roc_mono::ir::{Literal, Stmt};
use roc_mono::layout::Layout;
use target_lexicon::{CallingConvention, Triple}; use target_lexicon::{CallingConvention, Triple};
mod asm; mod asm;