about summary refs log tree commit diff
path: root/compiler/rustc_lint/src/static_mut_refs.rs
diff options
context:
space:
mode:
Diffstat (limited to 'compiler/rustc_lint/src/static_mut_refs.rs')
-rw-r--r--compiler/rustc_lint/src/static_mut_refs.rs10
1 files changed, 4 insertions, 6 deletions
diff --git a/compiler/rustc_lint/src/static_mut_refs.rs b/compiler/rustc_lint/src/static_mut_refs.rs
index fed5c29284b..50021157dda 100644
--- a/compiler/rustc_lint/src/static_mut_refs.rs
+++ b/compiler/rustc_lint/src/static_mut_refs.rs
@@ -157,11 +157,9 @@ fn emit_static_mut_refs(
         }
     };
 
-    cx.emit_span_lint(STATIC_MUT_REFS, span, RefOfMutStatic {
+    cx.emit_span_lint(
+        STATIC_MUT_REFS,
         span,
-        sugg,
-        shared_label,
-        shared_note,
-        mut_note,
-    });
+        RefOfMutStatic { span, sugg, shared_label, shared_note, mut_note },
+    );
 }