From 987b34d09018e8f7c1b880bcb26e8483e6843869 Mon Sep 17 00:00:00 2001 From: flip1995 <9744647+flip1995@users.noreply.github.com> Date: Thu, 20 Sep 2018 14:38:13 +0200 Subject: [PATCH] Another Applicability adjustment --- clippy_lints/src/large_enum_variant.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clippy_lints/src/large_enum_variant.rs b/clippy_lints/src/large_enum_variant.rs index 8ff53e15c31..e8982d92b56 100644 --- a/clippy_lints/src/large_enum_variant.rs +++ b/clippy_lints/src/large_enum_variant.rs @@ -102,7 +102,7 @@ fn check_item(&mut self, cx: &LateContext<'_, '_>, item: &Item) { "consider boxing the large fields to reduce the total size of the \ enum", format!("Box<{}>", snip), - Applicability::Unspecified, + Applicability::MaybeIncorrect, ); return; } -- 2.44.0