1. 20 11月, 2018 2 次提交
  2. 17 11月, 2018 1 次提交
  3. 15 11月, 2018 2 次提交
  4. 12 11月, 2018 1 次提交
  5. 10 11月, 2018 7 次提交
  6. 09 11月, 2018 3 次提交
  7. 07 11月, 2018 4 次提交
  8. 05 11月, 2018 4 次提交
  9. 04 11月, 2018 2 次提交
  10. 01 11月, 2018 1 次提交
    • S
      Fix double_check tests on big-endian targets · 283f2be1
      Samuel Holland 提交于
      Since the enums get optimized down to 1 byte long, the bits
      set in the usize member don't align with the enums on big-endian
      machines. Avoid this issue by shrinking the integer member to the
      same size as the enums.
      283f2be1
  11. 29 10月, 2018 3 次提交
  12. 27 10月, 2018 1 次提交
  13. 25 10月, 2018 8 次提交
  14. 21 10月, 2018 1 次提交
    • M
      Use new region infer errors for explaining borrows · 2a3969a3
      Matthew Jasper 提交于
      This gives at least some explanation for why a borrow is expected to
      last for a certain free region. Also:
      
      * Reports E0373: "closure may outlive the current function" with NLL.
      * Special cases the case of returning a reference to (or value
        referencing) a local variable or temporary (E0515).
      * Special case assigning a reference to a local variable in a closure
        to a captured variable.
      2a3969a3