remove unnecessary Sized trait on CompilationTarget

This commit is contained in:
Mark Thom
2017-01-22 11:26:23 -07:00
parent ed2343be9f
commit e7af3dc57a

View File

@@ -31,7 +31,7 @@ impl fmt::Display for FactInstruction {
}
}
pub trait CompilationTarget<'a> where Self : Sized {
pub trait CompilationTarget<'a> {
type Iterator : Iterator<Item=&'a Term>;
fn iter(term: &'a Term) -> Self::Iterator;