| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2019-01-08 | Remove all copyright license headers | Philipp Hansch | -7/+7 | |
| Discussion previously happened in https://github.com/rust-lang/rust/pull/43498 | ||||
| 2018-12-28 | Update *.stderr files | flip1995 | -14/+14 | |
| 2018-12-03 | Remove unsafe_vector_initialization lint | David Tolnay | -33/+22 | |
| 2018-12-01 | Keep testing unsafe_vector_initialization as ui test | David Tolnay | -25/+25 | |
| 2018-11-25 | Lint only the first statment/expression after alloc | Guillem Nieto | -6/+4 | |
| Instead of searching for all the successive expressions after a vector allocation, check only the first expression. This is done to minimize the amount of false positives of the lint. | ||||
| 2018-11-25 | Rename some symbols | Guillem Nieto | -16/+16 | |
| Renamed some symbols in order to make them a little bit more accurate. | ||||
| 2018-11-25 | Split lint into slow and unsafe vector initalization | Guillem Nieto | -66/+24 | |
| 2018-11-25 | Add unsafe set_len initialization | Guillem Nieto | -36/+50 | |
| 2018-11-25 | Add slow zero-filled vector initialization lint | Guillem Nieto | -0/+101 | |
| Add lint to detect slow zero-filled vector initialization. It detects when a vector is zero-filled with extended with `repeat(0).take(len)` or `resize(len, 0)`. This zero-fillings are usually slower than simply using `vec![0; len]`. | ||||
