about summary refs log tree commit diff
path: root/clippy_lints/src/slow_vector_initialization.rs
AgeCommit message (Expand)AuthorLines
2021-04-06Fix all occurences of `needless_borrow` internallyJason Newcomb-21/+21
2021-03-17Don't re-export clippy_utils::*Cameron Steffen-2/+2
2021-03-15Don't re-export clippy_utils::diagnostics::*Cameron Steffen-1/+2
2020-07-03Use 'tcx for references to AccessLevels wherever possible.Eduard-Mihai Burtescu-7/+7
2020-06-10Update Clippy for MethodCall changesAaron Hill-3/+3
2020-06-09Merge commit 'ff0993c5e9162ddaea78e83d0f0161e68bd4ea73' into clippyLzu Tao-1/+7
2020-04-17Cleanup: Rename 'db' variable to 'diag'Philipp Hansch-2/+2
2020-03-30rustup https://github.com/rust-lang/rust/pull/70536Matthias Krüger-1/+1
2020-03-16rustup https://github.com/rust-lang/rust/pull/68944Matthias Krüger-1/+1
2020-03-01Rustup to rust-lang/rust#69592Yuki Okushi-1/+1
2020-02-21Fix falloutflip1995-1/+1
2020-01-13Rustup to rust-lang/rust#68045Yuki Okushi-1/+1
2020-01-11Rustup to rust-lang/rust#67806Yuki Okushi-3/+2
2020-01-09Rustup to rust-lang/rust#67979Yuki Okushi-2/+5
2020-01-07Rustup to rust-lang/rust#67886Yuki Okushi-1/+1
2019-12-31Rustup to rust-lang/rust#67707Yuki Okushi-1/+1
2019-12-27Rustup to rust-lang/rust#66936Yuki Okushi-15/+15
2019-12-24rustup "Add span information to `ExprKind::Assign`"Lzu Tao-1/+1
2019-12-04Rustup to rust-lang/rust#66878Matthias Krüger-1/+2
2019-10-15Add a new lint for unused selfJames Wang-2/+2
2019-09-27Rustup to rust-lang/rust#64813flip1995-16/+16
2019-08-03Doctests: Enable running doc tests for perf lintsPhilipp Hansch-0/+2
2019-06-20Fix warnings about unnecessary lifetime boundsLzu Tao-1/+1
2019-05-17Prevent symbocalypseOliver Scherer-8/+7
2019-05-14Rustfmt all the thingsOliver Scherer-1/+1
2019-05-14Use symbols instead of stringsOliver Scherer-7/+8
2019-04-17Use lint pass macrosMatthew Kraai-15/+4
2019-03-10Addressed points raised in review.Alexander Regueiro-1/+1
2019-03-10Various cosmetic improvements.Alexander Regueiro-3/+3
2019-03-05move lint documentation into macro invocationsAndy Russell-15/+15
2019-02-24HirIdify some lintsljedrz-5/+5
2019-02-03Fix breakage due to rust-lang/rust#58079Michael Wright-1/+1
2019-01-27Auto merge of #3706 - robamler:patch-1, r=phanschbors-2/+2
2019-01-27rustup https://github.com/rust-lang/rust/pull/57907/Matthias Krüger-1/+1
2019-01-26Fix documentation for `slow_vector_initialization`Robert Bamler-2/+2
2019-01-27rustup https://github.com/rust-lang/rust/pull/57726Matthias Krüger-0/+4
2019-01-20Fixed breakage due to rust-lang/rust#57489Michael Wright-4/+3
2019-01-08Remove all copyright license headersPhilipp Hansch-9/+0
2018-12-29Remove crate:: prefixes from crate pathsKonrad Borowski-7/+7
2018-12-03Remove unsafe_vector_initialization lintDavid Tolnay-52/+1
2018-12-01Downgrade unsafe_vector_initialization to restrictionDavid Tolnay-1/+1
2018-11-27Run rustfmt on clippy_lintsflip1995-54/+43
2018-11-25Lint only the first statment/expression after allocGuillem Nieto-9/+30
2018-11-25Fix some warnings related to SelfGuillem Nieto-7/+7
2018-11-25Rename some symbolsGuillem Nieto-57/+60
2018-11-25Split lint into slow and unsafe vector initalizationGuillem Nieto-28/+72
2018-11-25Add unsafe set_len initializationGuillem Nieto-7/+33
2018-11-25Add slow zero-filled vector initialization lintGuillem Nieto-0/+304