Skip to content

Commit 2271eb0

Browse files
nits
1 parent c3141c3 commit 2271eb0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/smt.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -665,7 +665,7 @@ impl BaseSort for SMTSolved {
665665
SatResultWithModel::Unsat => SMTSolvedValue::Unsat,
666666
SatResultWithModel::Unknown => SMTSolvedValue::Unknown,
667667
};
668-
println!("");
668+
println!();
669669
res
670670
}}
671671
);
@@ -1171,7 +1171,7 @@ impl Logger for SMTLogger {
11711171

11721172
fn response(&self, cmd: smtlib_lowlevel::ast::Command, res: &str) {
11731173
if env::var("SMT_DEBUG").is_ok() {
1174-
print!("{}; {}", cmd, res);
1174+
print!("{cmd}; {res}");
11751175
}
11761176
}
11771177
}

0 commit comments

Comments
 (0)