dead code

This commit is contained in:
Aleksey Kladov 2018-08-16 11:08:41 +03:00
parent c631b585a7
commit 1193c5f829

View file

@ -166,17 +166,6 @@ impl World {
}
}
pub type SearchResult = ::std::result::Result<Continue, Break>;
pub struct Continue;
pub struct Break;
pub const CONTINUE: SearchResult = Ok(Continue);
pub const BREAK: SearchResult = Err(Break);
#[derive(Default, Debug)]
struct WorldData {
unindexed: AtomicUsize,