Skip to content

Commit

Permalink
fix cargo fmt --check
Browse files Browse the repository at this point in the history
  • Loading branch information
mthom committed Jan 2, 2024
1 parent 372b4bc commit 1dc546a
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions src/codegen.rs
Original file line number Diff line number Diff line change
Expand Up @@ -860,11 +860,8 @@ impl<'b> CodeGenerator<'b> {
self.marker.mark_safe_var_unconditionally(var_num);
compile_expr!(self, &terms[1], term_loc, code)
} else {
self.marker.mark_anon_var::<QueryInstruction>(
Level::Shallow,
term_loc,
code,
);
self.marker
.mark_anon_var::<QueryInstruction>(Level::Shallow, term_loc, code);

if let Term::Var(ref vr, ref var) = &terms[1] {
let var_num = var.to_var_num().unwrap();
Expand Down

0 comments on commit 1dc546a

Please sign in to comment.