| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2014-11-06 | Fallout from collection conventions | Alexis Beingessner | -2/+2 | |
| 2014-10-31 | DSTify Hash | Jorge Aparicio | -1/+1 | |
| - The signature of the `*_equiv` methods of `HashMap` and similar structures have changed, and now require one less level of indirection. Change your code from: ``` hashmap.find_equiv(&"Hello"); hashmap.find_equiv(&&[0u8, 1, 2]); ``` to: ``` hashmap.find_equiv("Hello"); hashmap.find_equiv(&[0u8, 1, 2]); ``` - The generic parameter `T` of the `Hasher::hash<T>` method have become `Sized?`. Downstream code must add `Sized?` to that method in their implementations. For example: ``` impl Hasher<FnvState> for FnvHasher { fn hash<T: Hash<FnvState>>(&self, t: &T) -> u64 { /* .. */ } } ``` must be changed to: ``` impl Hasher<FnvState> for FnvHasher { fn hash<Sized? T: Hash<FnvState>>(&self, t: &T) -> u64 { /* .. */ } // ^^^^^^ } ``` [breaking-change] | ||||
| 2014-10-30 | rollup merge of #18409 : gamazeps/issue15273 | Alex Crichton | -0/+7 | |
| 2014-10-29 | Diagnostic: resolve bare fn in expected closure | gamazeps | -0/+7 | |
| Closes #15273 (I did not find how to get the identifier in the message :/) Also creates the span_help! macro associated with #18126 | ||||
| 2014-10-28 | Use PascalCase for token variants | Brendan Zabarauskas | -6/+6 | |
| 2014-10-26 | Use standard capitalisation for TokenTree variants | Brendan Zabarauskas | -6/+6 | |
| 2014-10-26 | Rename TokenTree variants for clarity | Brendan Zabarauskas | -6/+6 | |
| This should be clearer, and fits in better with the `TTNonterminal` variant. Renames: - `TTTok` -> `TTToken` - `TTDelim` -> `TTDelimited` - `TTSeq` -> `TTSequence` | ||||
| 2014-09-19 | Allow syntax extensions to return multiple items, closes #16723. | Florian Hahn | -4/+4 | |
| This patch replaces `MacItem` with `MacItems`. | ||||
| 2014-09-14 | syntax: fix fallout from using ptr::P. | Eduard Burtescu | -2/+2 | |
| 2014-08-27 | Implement generalized object and type parameter bounds (Fixes #16462) | Niko Matsakis | -6/+12 | |
| 2014-07-19 | Register new snapshots | Alex Crichton | -26/+0 | |
| 2014-07-18 | Assign more diagnostic codes | Jakub Wieczorek | -6/+6 | |
| 2014-07-12 | Convert a first batch of diagnostics to have error codes | Jakub Wieczorek | -1/+24 | |
| 2014-07-11 | Add scaffolding for assigning alpha-numeric codes to rustc diagnostics | Jakub Wieczorek | -0/+208 | |
