remove Temp
All checks were successful
buildbot/cargo fmt (1.72) Build done.
buildbot/cargo doc (1.72) Build done.
buildbot/cargo clippy (1.65) Build done.
buildbot/cargo clippy (1.72) Build done.
buildbot/cargo test (1.65) Build done.

This commit is contained in:
AF 2023-10-15 10:43:31 +00:00
parent 15f63125fa
commit eb1a462782

View File

@ -47,17 +47,6 @@ enum EvalTree<'a> {
type Oet<'a> = Option<EvalTree<'a>>;
struct Temp;
impl Atom for Temp {
fn next<'t>(self: Box<Self>) -> Oet<'t>
where
Self: 't,
{
unreachable!()
}
}
impl<'a> EvalTree<'a> {
fn next_composite(mut self: Box<Self>, other: Box<Self>) -> Self {
match *self {