Remove Known problems section for vec_box

This commit is contained in:
alexey semenyuk 2025-02-19 18:23:47 +05:00 committed by GitHub
parent d8ecde0e43
commit e297c84703
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -60,10 +60,6 @@ declare_clippy_lint! {
/// `Vec` already keeps its contents in a separate area on
/// the heap. So if you `Box` its contents, you just add another level of indirection.
///
/// ### Known problems
/// Vec<Box<T: Sized>> makes sense if T is a large type (see [#3530](https://github.com/rust-lang/rust-clippy/issues/3530),
/// 1st comment).
///
/// ### Example
/// ```no_run
/// struct X {