Skip to content

Commit

Permalink
run cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
bungcip committed Mar 25, 2023
1 parent e672389 commit 37a641a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 1 addition & 3 deletions c2rust-transpile/src/translator/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4108,9 +4108,7 @@ impl<'c> Translation<'c> {

return Ok(WithStmts::new(stmts, val));
}
_ => {
stmts.push(stmt)
}
_ => stmts.push(stmt),
}
}

Expand Down
2 changes: 1 addition & 1 deletion dynamic_instrumentation/src/callbacks.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ use rustc_span::def_id::LocalDefId;
use rustc_span::symbol::Ident;
use rustc_span::DUMMY_SP;

use thin_vec::ThinVec;
use crate::instrument::Instrumenter;
use thin_vec::ThinVec;

pub static INSTRUMENTER: Lazy<Instrumenter> = Lazy::new(Instrumenter::new);

Expand Down

0 comments on commit 37a641a

Please sign in to comment.