[parser] We do not need the return value of pop()
This commit is contained in:
parent
9f5165f0aa
commit
fe271dfd8b
1 changed files with 1 additions and 1 deletions
|
@ -53,7 +53,7 @@ impl<T> Parser<T> where T: Iterator<Item=LexerResult> {
|
||||||
}
|
}
|
||||||
|
|
||||||
fn pop_parser(&mut self) {
|
fn pop_parser(&mut self) {
|
||||||
let popped = self.parsers.pop();
|
self.parsers.pop();
|
||||||
println!("popped parser stack --> {:?}", self.parsers);
|
println!("popped parser stack --> {:?}", self.parsers);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue