| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2015-01-08 | Update compile-fail tests to use is/us, not i/u. | Huon Wilson | -1/+1 | |
| 2015-01-08 | Update compile fail tests to use usize. | Huon Wilson | -3/+3 | |
| 2015-01-08 | Update compile fail tests to use isize. | Huon Wilson | -1/+1 | |
| 2015-01-07 | markers -> marker | Nick Cameron | -2/+2 | |
| 2015-01-07 | Change `std::kinds` to `std::markers`; flatten `std::kinds::marker` | Nick Cameron | -2/+2 | |
| [breaking-change] | ||||
| 2014-11-18 | auto merge of #19031 : nodakai/rust/libcore-pow-and-sq, r=bjz | bors | -2/+2 | |
| [breaking-change] Deprecates `core::num::pow` in favor of `Int::pow`. | ||||
| 2014-11-18 | libcore: add num::Int::pow() and deprecate num::pow(). | NODA, Kai | -2/+2 | |
| Signed-off-by: NODA, Kai <nodakai@gmail.com> | ||||
| 2014-11-17 | Switch to purely namespaced enums | Steven Fackler | -2/+2 | |
| This breaks code that referred to variant names in the same namespace as their enum. Reexport the variants in the old location or alter code to refer to the new locations: ``` pub enum Foo { A, B } fn main() { let a = A; } ``` => ``` pub use self::Foo::{A, B}; pub enum Foo { A, B } fn main() { let a = A; } ``` or ``` pub enum Foo { A, B } fn main() { let a = Foo::A; } ``` [breaking-change] | ||||
| 2014-11-15 | Un-feature gate struct variants | Steven Fackler | -1/+0 | |
| Struct variant field visibility is now inherited. Remove `pub` keywords from declarations. Closes #18641 [breaking-change] | ||||
| 2014-10-28 | Update code with new lint names | Aaron Turon | -1/+1 | |
| 2014-10-24 | Add a lint for not using field pattern shorthands | P1start | -1/+1 | |
| Closes #17792. | ||||
| 2014-09-24 | Use more descriptive names in dead code messages | Jakub Wieczorek | -3/+3 | |
| 2014-09-24 | Add detection of unused enum variants | Jakub Wieczorek | -2/+2 | |
| 2014-06-08 | Add detection of dead struct fields | Jakub Wieczorek | -0/+67 | |
