| Age | Commit message (Collapse) | Author | Lines |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
rs=bugfix
|
|
Closes #3155
|
|
|
|
|
|
|
|
|
|
|
|
If an enum type's only variant is private, disallow dereferencing
values of its type.
Due to #4082, this only applies to enums that are in the same crate.
r=pcwalton
Closes #818
|
|
|
|
|
|
r=brson
|
|
explicit self. rs=blocking-snapshot
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
implementations. r=nmatsakis
|
|
|
|
|
|
Two separate changes that got intertwined (sorry):
Make to_str pure. Closes #3691
In str, change functions like push_char to take an &mut str instead of
an &str. Closes #3710
|
|
|
|
Everything should now call ptr::addr_of instead of
ptr::p2::addr_of. Only the pipes macro code when compiled
by stage0 will call ptr::p2::addr_of. Needs a snapshot to get
rid of that.
|
|
|
|
|
|
#[legacy_exports];
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Now you can write:
extern {
f() -> int;
}
and f will be accessible in the enclosing scope.
|
|
|
|
|
|
|
|
|