Remove ResultsCloned and ResultsClonedCursor.

They're now unused.
This commit is contained in:
Nicholas Nethercote
2023-11-24 11:18:12 +11:00
parent 500e55ba8c
commit 34aa36b266
3 changed files with 4 additions and 26 deletions

View File

@@ -45,9 +45,9 @@ pub mod graphviz;
pub mod lattice;
mod visitor;
pub use self::cursor::{ResultsClonedCursor, ResultsCursor};
pub use self::cursor::ResultsCursor;
pub use self::direction::{Backward, Direction, Forward};
pub use self::engine::{Engine, EntrySets, Results, ResultsCloned};
pub use self::engine::{Engine, EntrySets, Results};
pub use self::lattice::{JoinSemiLattice, MaybeReachable};
pub use self::visitor::{visit_results, ResultsVisitable, ResultsVisitor};