Skip to content

Commit 8e312cc

Browse files
Fix
1 parent c77e8e9 commit 8e312cc

File tree

2 files changed

+1
-2
lines changed
  • circ_blocks

2 files changed

+1
-2
lines changed

circ_blocks/src/ir/term/extras.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ pub fn dump_op_stats() {
192192
}
193193

194194
/// Iterator over descendents in child-first order.
195-
pub struct PostOrderSkipIter<'a, F: Fn(&Term) -> bool + 'a> {
195+
pub struct PostOrderSkipIter<'a, F: Fn(&Term) -> bool> {
196196
// (cs stacked, term)
197197
stack: Vec<(bool, Term)>,
198198
visited: TermSet,

circ_blocks/third_party/ZoKrates/zokrates_parser/src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
#![allow(clippy::upper_case_acronyms)] // we allow uppercase acronyms because the pest derive generates WHITESPACE and COMMENT which have special meaning in pest
22

3-
extern crate pest;
43
#[macro_use]
54
extern crate pest_derive;
65

0 commit comments

Comments
 (0)