Removed unused variable from pushstage
This commit is contained in:
parent
83271a7d42
commit
ad1793bc4b
@ -58,7 +58,6 @@ where
|
|||||||
{
|
{
|
||||||
initialized: bool,
|
initialized: bool,
|
||||||
state: Rc<RefCell<S>>,
|
state: Rc<RefCell<S>>,
|
||||||
current_iter: Option<usize>,
|
|
||||||
current_corpus_idx: Option<usize>,
|
current_corpus_idx: Option<usize>,
|
||||||
testcases_to_do: usize,
|
testcases_to_do: usize,
|
||||||
testcases_done: usize,
|
testcases_done: usize,
|
||||||
@ -201,7 +200,7 @@ where
|
|||||||
// We already ran once
|
// We already ran once
|
||||||
self.post_exec()
|
self.post_exec()
|
||||||
} else {
|
} else {
|
||||||
self.init() // TODO: Corpus idx
|
self.init()
|
||||||
};
|
};
|
||||||
if let Err(err) = step_success {
|
if let Err(err) = step_success {
|
||||||
//let errored = true;
|
//let errored = true;
|
||||||
@ -264,7 +263,6 @@ where
|
|||||||
phantom: PhantomData,
|
phantom: PhantomData,
|
||||||
initialized: false,
|
initialized: false,
|
||||||
state,
|
state,
|
||||||
current_iter: None,
|
|
||||||
current_corpus_idx: None, // todo
|
current_corpus_idx: None, // todo
|
||||||
testcases_to_do: 0,
|
testcases_to_do: 0,
|
||||||
testcases_done: 0,
|
testcases_done: 0,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user