Closed
Description
In #3545 the VEC_BOX
lint was implemented. This lints on usage of Vec<Box<T: Sized>>
. The Box
around T
could make sense though, if T
is a very large type. (See also #3530 (comment))
A good enhancement for this lint would be, to make it configurable over the size of T
, with some meaningful default value (TBD).