1. 08 2月, 2016 10 次提交
  2. 06 2月, 2016 1 次提交
  3. 04 2月, 2016 8 次提交
  4. 03 2月, 2016 1 次提交
  5. 31 1月, 2016 1 次提交
  6. 30 1月, 2016 3 次提交
  7. 28 1月, 2016 2 次提交
  8. 26 1月, 2016 2 次提交
    • J
      Resolve: fix #23880, a scoping bug · faf0852f
      Jeffrey Seyfried 提交于
      This fixes a bug in which items in a block are shadowed by local variables and type parameters that are in scope.
      It is a [breaking-change]. For example, the following code breaks:
      
      ```rust
      fn foo() {
          let mut f = 1;
          {
              fn f() {}
              f += 1; // This will now resolve to the function instead of the local variable
          }
      }
      ```
      
      Any breakage can be fixed by renaming the item that is no longer shadowed.
      faf0852f
    • N
      Fix a rebasing issue and addressed reviewer comment · 43b36815
      Nick Cameron 提交于
      43b36815
  9. 25 1月, 2016 1 次提交
    • A
      mk: Move from `-D warnings` to `#![deny(warnings)]` · 2273b520
      Alex Crichton 提交于
      This commit removes the `-D warnings` flag being passed through the makefiles to
      all crates to instead be a crate attribute. We want these attributes always
      applied for all our standard builds, and this is more amenable to Cargo-based
      builds as well.
      
      Note that all `deny(warnings)` attributes are gated with a `cfg(stage0)`
      attribute currently to match the same semantics we have today
      2273b520
  10. 23 1月, 2016 1 次提交
  11. 22 1月, 2016 2 次提交
  12. 21 1月, 2016 3 次提交
  13. 15 1月, 2016 1 次提交
  14. 13 1月, 2016 1 次提交
  15. 08 1月, 2016 1 次提交
  16. 06 1月, 2016 1 次提交
  17. 30 12月, 2015 1 次提交