| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2015-03-03 | Feature gate `#[static_assert]`. | Huon Wilson | -0/+1 | |
| The API this exposes is a little strange (being attached to `static`s), so it makes sense to conservatively feature gate it. If it is highly popular, it is possible to reverse this gating. | ||||
| 2015-01-31 | Kill more `isize`s | Tobias Bucher | -1/+1 | |
| 2015-01-08 | Update compile-fail tests to use is/us, not i/u. | Huon Wilson | -1/+1 | |
| 2014-06-29 | librustc: Remove the fallback to `int` for integers and `f64` for | Patrick Walton | -1/+1 | |
| floating point numbers for real. This will break code that looks like: let mut x = 0; while ... { x += 1; } println!("{}", x); Change that code to: let mut x = 0i; while ... { x += 1; } println!("{}", x); Closes #15201. [breaking-change] | ||||
| 2014-03-28 | Convert most code to new inner attribute syntax. | Brian Anderson | -1/+1 | |
| Closes #2569 | ||||
| 2014-02-07 | Added tests to make tidy | Derek Guenther | -0/+10 | |
| 2013-12-08 | Add dead-code warning pass | Kiet Tran | -0/+2 | |
| 2013-07-01 | rustc: add a lint to enforce uppercase statics. | Huon Wilson | -1/+1 | |
| 2013-05-22 | Implement static_assert attribute | Corey Richardson | -0/+4 | |
| This verifies that a static item evaluates to true, at compile time. | ||||
