fix cargo fmt --check

This commit is contained in:
Mark
2024-01-02 10:08:00 -07:00
parent 372b4bca46
commit 1dc546ac36

View File

@@ -860,11 +860,8 @@ impl<'b> CodeGenerator<'b> {
self.marker.mark_safe_var_unconditionally(var_num); self.marker.mark_safe_var_unconditionally(var_num);
compile_expr!(self, &terms[1], term_loc, code) compile_expr!(self, &terms[1], term_loc, code)
} else { } else {
self.marker.mark_anon_var::<QueryInstruction>( self.marker
Level::Shallow, .mark_anon_var::<QueryInstruction>(Level::Shallow, term_loc, code);
term_loc,
code,
);
if let Term::Var(ref vr, ref var) = &terms[1] { if let Term::Var(ref vr, ref var) = &terms[1] {
let var_num = var.to_var_num().unwrap(); let var_num = var.to_var_num().unwrap();