cleanup unused code

This commit is contained in:
Folkert 2020-10-30 00:38:00 +01:00
parent 73e0ea2e5d
commit c6633ece7c
2 changed files with 1 additions and 9 deletions

View file

@ -1,11 +1,10 @@
use crate::boolean_algebra::{self, Bool};
use crate::subs::{FlatType, Subs, VarId, VarStore, Variable};
use crate::types::{Problem, RecordField, Type};
use roc_collections::all::{default_hasher, ImMap, MutMap, MutSet, SendMap};
use roc_collections::all::{ImMap, MutSet, SendMap};
use roc_module::ident::{Lowercase, TagName};
use roc_module::symbol::Symbol;
use roc_region::all::{Located, Region};
use std::collections::HashMap;
/// A marker that a given Subs has been solved.
/// The only way to obtain a Solved<Subs> is by running the solver on it.