1. 09 11月, 2018 3 次提交
  2. 08 11月, 2018 5 次提交
    • B
      Auto merge of #55532 - pnkfelix:rustc_error-survey, r=nikomatsakis · 653da4fd
      bors 提交于
      #[rustc_error] survey
      
      Fix #55505
      653da4fd
    • B
      Auto merge of #55366 - Amanieu:stable_layout, r=Amanieu · 1d834550
      bors 提交于
      Add tracking issue for Layout methods (and some API changes)
      
      These methods are already useful when used with the stable global allocator API (stabilized in #51241).
      
      ```rust
      pub fn align_to(&self, align: usize) -> Result<Layout, LayoutErr>;
      pub fn padding_needed_for(&self, align: usize) -> usize;
      pub fn repeat(&self, n: usize) -> Result<(Layout, usize), LayoutErr>;
      pub fn extend(&self, next: Layout) -> Result<(Layout, usize), LayoutErr>;
      pub fn repeat_packed(&self, n: usize) -> Result<Layout, LayoutErr>;
      pub fn extend_packed(&self, next: Layout) -> Result<Layout, LayoutErr>;
      pub fn array<T>(n: usize) -> Result<Layout, LayoutErr>;
      ```
      
      cc #32838
      
      r? @SimonSapin
      1d834550
    • B
      Auto merge of #55187 - malbarbo:fix-manifest, r=alexcrichton · 9c304fb0
      bors 提交于
      Remove targets from the manifest that are not built on travis
      
      Fixes https://github.com/rust-lang/rust/issues/55020
      9c304fb0
    • M
    • B
      Auto merge of #55746 - kennytm:rollup, r=kennytm · 25a42b2c
      bors 提交于
      Rollup of 14 pull requests
      
      Successful merges:
      
       - #55377 (Slight copy-editing for `std::cell::Cell` docs)
       - #55441 (Remove unused re import in gdb_rust_pretty_printing)
       - #55453 (Choose predicates without inference variables over those with them)
       - #55495 (Don't print opt fuel messages to stdout because it breaks Rustbuild)
       - #55501 (Make `process_obligations`' computation of `completed` optional.)
       - #55510 (Fix feature gate only being checked on first repr attr.)
       - #55609 (Run name-anon-globals after LTO passes as well)
       - #55645 (do not print wrapping ranges like normal ranges in validity diagnostics)
       - #55688 (Standardised names and location of ui issue tests)
       - #55692 (-C remark: fix incorrect warning about requiring "--debuginfo" instead of "-C debuginfo=n")
       - #55702 (Add `aarch64-pc-windows-msvc` to deployed targets)
       - #55728 (Update lldb)
       - #55730 (Use trait impl method span when type param mismatch is due to impl Trait)
       - #55734 (refactor: use shorthand fields)
      25a42b2c
  3. 07 11月, 2018 32 次提交