| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2014-07-17 | librustc: Remove cross-borrowing of `Box<T>` to `&T` from the language, | Patrick Walton | -14/+14 | |
| except where trait objects are involved. Part of issue #15349, though I'm leaving it open for trait objects. Cross borrowing for trait objects remains because it is needed until we have DST. This will break code like: fn foo(x: &int) { ... } let a = box 3i; foo(a); Change this code to: fn foo(x: &int) { ... } let a = box 3i; foo(&*a); [breaking-change] | ||||
| 2014-07-16 | debuginfo: Add LLDB autotests to debuginfo test suite. | Michael Woerister | -1/+54 | |
| This commit adds LLDB autotests to the test suite but does not activate them by default yet. | ||||
| 2014-05-07 | debuginfo: Split debuginfo autotests into debuginfo-gdb and debuginfo-lldb | Michael Woerister | -0/+110 | |
