| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2025-07-31 | Add lint against dangling pointers form local variables | Urgau | -8/+142 | |
| 2025-07-31 | remove rustc_attr_data_structures | Jana Dönszelmann | -2/+2 | |
| 2025-06-16 | Port `#[rustc_as_ptr]` to the new attribute system | Pavel Grigorenko | -1/+2 | |
| 2025-03-06 | Implement .use keyword as an alias of clone | Santiago Pastorino | -1/+4 | |
| 2025-01-27 | Use identifiers in diagnostics more often | Michael Goulet | -1/+1 | |
| 2024-12-18 | Re-export more `rustc_span::symbol` things from `rustc_span`. | Nicholas Nethercote | -2/+1 | |
| `rustc_span::symbol` defines some things that are re-exported from `rustc_span`, such as `Symbol` and `sym`. But it doesn't re-export some closely related things such as `Ident` and `kw`. So you can do `use rustc_span::{Symbol, sym}` but you have to do `use rustc_span::symbol::{Ident, kw}`, which is inconsistent for no good reason. This commit re-exports `Ident`, `kw`, and `MacroRulesNormalizedIdent`, and changes many `rustc_span::symbol::` qualifiers in `compiler/` to `rustc_span::`. This is a 200+ net line of code reduction, mostly because many files with two `use rustc_span` items can be reduced to one. | ||||
| 2024-12-12 | Add unwrap_unsafe_binder and wrap_unsafe_binder macro operators | Michael Goulet | -0/+2 | |
| 2024-11-27 | Avoid even more decoding if not absolutely necessary | Urgau | -2/+2 | |
| 2024-11-26 | Avoid decoding from metadata if not necessary | Urgau | -1/+1 | |
| 2024-11-19 | Correct comments concerning updated dangling pointer lint | gavincrawford | -8/+5 | |
| 2024-11-11 | Update dangling pointer tests | gavincrawford | -3/+4 | |
| 2024-11-11 | Check for #[rustc_as_ptr] attribute instead of searching for function names | gavincrawford | -4/+5 | |
| Co-authored-by: Urgau <3616612+Urgau@users.noreply.github.com> | ||||
| 2024-10-28 | New lint: `dangling_pointers_from_temporaries` | Pavel Grigorenko | -0/+223 | |
