Files
rust/src/libsync
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
..
2014-06-22 21:16:11 -07:00
2014-06-11 10:00:43 -07:00
2014-06-11 10:00:43 -07:00
2014-06-13 13:53:34 -07:00