diff options
| author | Michael Goulet <michael@errs.io> | 2025-02-17 05:33:06 +0000 |
|---|---|---|
| committer | Michael Goulet <michael@errs.io> | 2025-02-22 00:05:09 +0000 |
| commit | e5dbcc2c16bd73f2b6bb81c452af66289c2a3902 (patch) | |
| tree | 20b06c23e122aaa5153cdb18a030e0577f141c9e /clippy_lints/src/missing_inline.rs | |
| parent | 49082f94fccf6d770704891b5f4ce23b930c18e5 (diff) | |
Make asm a named field
Diffstat (limited to 'clippy_lints/src/missing_inline.rs')
| -rw-r--r-- | clippy_lints/src/missing_inline.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clippy_lints/src/missing_inline.rs b/clippy_lints/src/missing_inline.rs index fdc0930e957..3cf1a80607e 100644 --- a/clippy_lints/src/missing_inline.rs +++ b/clippy_lints/src/missing_inline.rs @@ -128,7 +128,7 @@ impl<'tcx> LateLintPass<'tcx> for MissingInline { | hir::ItemKind::Static(..) | hir::ItemKind::Struct(..) | hir::ItemKind::TraitAlias(..) - | hir::ItemKind::GlobalAsm(..) + | hir::ItemKind::GlobalAsm { .. } | hir::ItemKind::TyAlias(..) | hir::ItemKind::Union(..) | hir::ItemKind::ExternCrate(..) |
