Skip to content

Commit 6641c88

Browse files
committed
comply with style guidelines
1 parent eae5bbb commit 6641c88

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

src/librustc_passes/dead.rs

+6-2
Original file line numberDiff line numberDiff line change
@@ -286,8 +286,12 @@ impl<'a, 'tcx> Visitor<'tcx> for MarkSymbolVisitor<'a, 'tcx> {
286286
self.in_pat = false;
287287
}
288288

289-
fn visit_qpath(&mut self, qpath: &'tcx hir::QPath<'tcx>,
290-
id: hir::HirId, span: rustc_span::Span) {
289+
fn visit_qpath(
290+
&mut self,
291+
qpath: &'tcx hir::QPath<'tcx>,
292+
id: hir::HirId,
293+
span: rustc_span::Span,
294+
) {
291295
let res = self.tables.qpath_res(qpath, id);
292296
self.handle_res(res);
293297
intravisit::walk_qpath(self, qpath, id, span);

0 commit comments

Comments
 (0)