about summary refs log tree commit diff
path: root/src/libstd/raw.rs
AgeCommit message (Collapse)AuthorLines
2014-05-07core: Inherit the raw moduleAlex Crichton-113/+0
2014-04-21Fix misspellings in comments.Joseph Crail-1/+1
2014-03-31std: Switch field privacy as necessaryAlex Crichton-16/+16
2014-03-28Convert most code to new inner attribute syntax.Brian Anderson-1/+1
Closes #2569
2014-03-04Cleaned up `std::any`Marvin Löbel-1/+17
- Added `TraitObject` representation to `std::raw`. - Added doc to `std::raw`. - Removed `Any::as_void_ptr()` and `Any::as_mut_void_ptr()` methods as they are uneccessary now after the removal of headers on owned boxes. This reduces the number of virtual calls needed. - Made the `..Ext` implementations work directly with the repr of a trait object. - Removed `Any`-related traits from the prelude. - Added bench for `Any`
2014-02-23std: Move raw to std::rawBrian Anderson-0/+97
Issue #1457