We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7c2050f commit 7376167Copy full SHA for 7376167
c2rust-transpile/src/translator/mod.rs
@@ -4108,9 +4108,7 @@ impl<'c> Translation<'c> {
4108
4109
return Ok(WithStmts::new(stmts, val));
4110
}
4111
- _ => {
4112
- stmts.push(stmt)
4113
- }
+ _ => stmts.push(stmt),
4114
4115
4116
dynamic_instrumentation/src/callbacks.rs
@@ -14,8 +14,8 @@ use rustc_span::def_id::LocalDefId;
14
use rustc_span::symbol::Ident;
15
use rustc_span::DUMMY_SP;
16
17
-use thin_vec::ThinVec;
18
use crate::instrument::Instrumenter;
+use thin_vec::ThinVec;
19
20
pub static INSTRUMENTER: Lazy<Instrumenter> = Lazy::new(Instrumenter::new);
21
0 commit comments