| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2014-09-24 | Use more descriptive names in dead code messages | Jakub Wieczorek | -6/+6 | |
| 2014-08-14 | libsyntax: Accept `use foo as bar;` in lieu of `use bar as foo;` | Patrick Walton | -1/+1 | |
| The old syntax will be removed after a snapshot. RFC #47. Issue #16461. | ||||
| 2014-07-21 | privacy: Add publically-reexported foreign item to exported item set | Kiet Tran | -0/+5 | |
| Close #15740 | ||||
| 2014-06-28 | Rename all raw pointers as necessary | Alex Crichton | -3/+3 | |
| 2014-06-24 | librustc: Remove the fallback to `int` from typechecking. | Niko Matsakis | -1/+1 | |
| This breaks a fair amount of code. The typical patterns are: * `for _ in range(0, 10)`: change to `for _ in range(0u, 10)`; * `println!("{}", 3)`: change to `println!("{}", 3i)`; * `[1, 2, 3].len()`: change to `[1i, 2, 3].len()`. RFC #30. Closes #6023. [breaking-change] | ||||
| 2014-04-04 | Fix fallout from std::libc separation | Corey Richardson | -1/+3 | |
| 2014-03-28 | Convert most code to new inner attribute syntax. | Brian Anderson | -4/+4 | |
| Closes #2569 | ||||
| 2014-02-21 | Changed NonCamelCaseTypes lint to warn by default | mr.Shu | -0/+1 | |
| Added allow(non_camel_case_types) to librustc where necesary Tried to fix problems with non_camel_case_types outside rustc fixed failing tests Docs updated Moved #[allow(non_camel_case_types)] a level higher. markdown.rs reverted Fixed timer that was failing tests Fixed another timer | ||||
| 2013-12-31 | Mark provided methods in dead-code pass | Kiet Tran | -0/+16 | |
| 2013-12-14 | Dead-code pass now marks and warns foreign items | Kiet Tran | -3/+19 | |
| 2013-12-08 | Add dead-code warning pass | Kiet Tran | -0/+50 | |
