| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2018-04-12 | Rename alloc::Void to alloc::Opaque | Simon Sapin | -5/+5 | |
| 2018-04-12 | Use NonNull<Void> instead of *mut u8 in the Alloc trait | Mike Hommey | -8/+8 | |
| Fixes #49608 | ||||
| 2018-04-12 | Actually deprecate the Heap type | Simon Sapin | -7/+6 | |
| 2018-04-02 | Use Alloc and Layout from core::heap. | Mike Hommey | -1/+2 | |
| 94d1970bba87f2d2893f6e934e4c3f02ed50604d moved the alloc::allocator module to core::heap, moving e.g. Alloc and Layout out of the alloc crate. While alloc::heap reexports them, it's better to use them from where they really come from. | ||||
| 2018-03-17 | Use NonNull<_> instead of NonZero<*const _> in btree internals | Simon Sapin | -16/+14 | |
| 2017-08-17 | Rollup merge of #43891 - Fourchaux:master, r=steveklabnik | Corey Farwell | -1/+1 | |
| Fix typos & us spellings Fixing some typos and non en-US spellings. (Update of PR https://github.com/rust-lang/rust/pull/42812 ) | ||||
| 2017-08-15 | use field init shorthand EVERYWHERE | Zack M. Davis | -7/+7 | |
| Like #43008 (f668999), but _much more aggressive_. | ||||
| 2017-08-15 | Fix typos & us spellings | Fourchaux | -1/+1 | |
| 2017-08-12 | Auto merge of #43794 - Eijebong:fix_typos, r=lukaramu,steveklanik,imperio | bors | -2/+2 | |
| Fix some typos I wrote a really naive script and found those typos in the documentation. | ||||
| 2017-08-11 | Fix some typos | Bastien Orivel | -2/+2 | |
| 2017-08-01 | Fixed all unnecessary muts in language core | Isaac van Bakel | -2/+2 | |
| 2017-07-22 | Use checked NonZero constructor instead of explicit null check in btree | Simon Sapin | -6/+4 | |
| 2017-07-22 | Add conversions from references to NonZero pointers, Unique, and Shared | Simon Sapin | -1/+1 | |
| 2017-07-22 | Add Box::into_unique | Simon Sapin | -3/+1 | |
| 2017-07-22 | Rename {NonZero,Shared,Unique}::new to new_unchecked | Simon Sapin | -5/+5 | |
| 2017-07-05 | rustc: Implement the #[global_allocator] attribute | Alex Crichton | -18/+8 | |
| This PR is an implementation of [RFC 1974] which specifies a new method of defining a global allocator for a program. This obsoletes the old `#![allocator]` attribute and also removes support for it. [RFC 1974]: https://github.com/rust-lang/rfcs/pull/197 The new `#[global_allocator]` attribute solves many issues encountered with the `#![allocator]` attribute such as composition and restrictions on the crate graph itself. The compiler now has much more control over the ABI of the allocator and how it's implemented, allowing much more freedom in terms of how this feature is implemented. cc #27389 | ||||
| 2017-06-13 | Merge crate `collections` into `alloc` | Murarth | -0/+1556 | |
