diff options
| author | alexey semenyuk <alexsemenyuk88@gmail.com> | 2025-07-24 13:11:00 +0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-07-24 13:11:00 +0500 |
| commit | 55be3c2f5825a25da81122cf9681e734bbc901ec (patch) | |
| tree | a6413a5da9106772446c937e48300d60ce163b13 | |
| parent | 8ad5c67ff9c39e2dc87c366a33169f197f14ae5c (diff) | |
Remove "Known problems" section for `clippy::redundant_closure`
| -rw-r--r-- | clippy_lints/src/eta_reduction.rs | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/clippy_lints/src/eta_reduction.rs b/clippy_lints/src/eta_reduction.rs index 0288747d6f3..9b627678bd3 100644 --- a/clippy_lints/src/eta_reduction.rs +++ b/clippy_lints/src/eta_reduction.rs @@ -29,12 +29,6 @@ declare_clippy_lint! { /// Needlessly creating a closure adds code for no benefit /// and gives the optimizer more work. /// - /// ### Known problems - /// If creating the closure inside the closure has a side- - /// effect then moving the closure creation out will change when that side- - /// effect runs. - /// See [#1439](https://github.com/rust-lang/rust-clippy/issues/1439) for more details. - /// /// ### Example /// ```rust,ignore /// xs.map(|x| foo(x)) |
