| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2016-05-06 | kill the old auxiliary directory | Niko Matsakis | -15/+0 | |
| 2014-08-20 | librustc: handle repr on structs, require it for ffi, unify with packed | Corey Richardson | -1/+1 | |
| As of RFC 18, struct layout is undefined. Opting into a C-compatible struct layout is now down with #[repr(C)]. For consistency, specifying a packed layout is now also down with #[repr(packed)]. Both can be specified. To fix errors caused by this, just add #[repr(C)] to the structs, and change #[packed] to #[repr(packed)] Closes #14309 [breaking-change] | ||||
| 2014-02-07 | Added tests to make tidy | Derek Guenther | -0/+10 | |
| 2013-09-24 | Correctly encode item visibility in metadata | Alex Crichton | -1/+1 | |
| This fixes private statics and functions from being usable cross-crates, along with some bad privacy error messages. This is a reopening of #8365 with all the privacy checks in privacy.rs instead of resolve.rs (where they should be anyway). These maps of exported items will hopefully get used for generating documentation by rustdoc Closes #8592 | ||||
| 2013-05-06 | Fix cross-crate packed structs | Seo Sanghyeon | -0/+5 | |
