Another Applicability adjustment

This commit is contained in:
flip1995 2018-09-20 14:38:13 +02:00
parent 52fb7d461e
commit 987b34d090
No known key found for this signature in database
GPG Key ID: 9F184E1164831181

View File

@ -102,7 +102,7 @@ impl<'a, 'tcx> LateLintPass<'a, 'tcx> for LargeEnumVariant {
"consider boxing the large fields to reduce the total size of the \
enum",
format!("Box<{}>", snip),
Applicability::Unspecified,
Applicability::MaybeIncorrect,
);
return;
}