1. 02 10月, 2014 1 次提交
  2. 27 7月, 2014 1 次提交
  3. 18 7月, 2014 1 次提交
    • P
      librustc: Remove cross-borrowing of `Box<T>` to `&T` from the language, · de70d763
      Patrick Walton 提交于
      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]
      de70d763
  4. 15 6月, 2014 1 次提交
    • A
      rustc: Obsolete the `@` syntax entirely · ade807c6
      Alex Crichton 提交于
      This removes all remnants of `@` pointers from rustc. Additionally, this removes
      the `GC` structure from the prelude as it seems odd exporting an experimental
      type in the prelude by default.
      
      Closes #14193
      [breaking-change]
      ade807c6
  5. 24 4月, 2014 1 次提交
  6. 14 4月, 2014 1 次提交
  7. 08 2月, 2014 1 次提交
  8. 12 12月, 2013 2 次提交
  9. 19 5月, 2013 1 次提交
  10. 04 5月, 2013 1 次提交
  11. 30 3月, 2013 1 次提交
  12. 27 3月, 2013 1 次提交
  13. 08 3月, 2013 1 次提交
  14. 07 3月, 2013 1 次提交
  15. 02 2月, 2013 1 次提交
  16. 08 1月, 2013 1 次提交