Skip to content

Commit 25b3c88

Browse files
committed
Fix formatting
1 parent 12e7092 commit 25b3c88

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

compiler/rustc_codegen_ssa/src/back/linker.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,10 @@ impl LinkerInfo {
8484
LinkerFlavor::PtxLinker => {
8585
Box::new(PtxLinker { cmd, sess, info: self }) as Box<dyn Linker>
8686
}
87-
LinkerFlavor::BpfLinker => Box::new(BpfLinker { cmd, sess, info: self }) as Box<dyn Linker>
87+
88+
LinkerFlavor::BpfLinker => {
89+
Box::new(BpfLinker { cmd, sess, info: self }) as Box<dyn Linker>
90+
}
8891
}
8992
}
9093
}

0 commit comments

Comments
 (0)