rust/src/librustc/util
Patrick Walton f6bfd2c65b librustc: Remove cross borrowing from mutable Boxes to &mut.
This will break code like:

    fn f(x: &mut int) {}

    let mut a = box 1i;
    f(a);

Change it to:

    fn f(x: &mut int) {}

    let mut a = box 1i;
    f(&mut *a);

RFC 33; issue #10504.

[breaking-change]
2014-06-24 23:14:42 -07:00
..
common.rs rustc: Move the AST from @T to Gc<T> 2014-06-11 09:51:37 -07:00
fs.rs rustc: Add a realpath utility function 2014-04-10 15:22:00 -07:00
nodemap.rs Fallout from the libcollections movement 2014-06-05 13:55:11 -07:00
ppaux.rs librustc: Remove the fallback to int from typechecking. 2014-06-24 17:18:48 -07:00
sha2.rs librustc: Remove cross borrowing from mutable Boxes to &mut. 2014-06-24 23:14:42 -07:00