1. 17 8月, 2023 4 次提交
  2. 16 8月, 2023 32 次提交
  3. 15 8月, 2023 4 次提交
    • B
      Auto merge of #114852 - GuillaumeGomez:rollup-vjagxjr, r=GuillaumeGomez · c57393e4
      bors 提交于
      Rollup of 10 pull requests
      
      Successful merges:
      
       - #114711 (Infer `Lld::No` linker hint when the linker stem is a generic compiler driver)
       - #114772 (Add `{Local}ModDefId` to more strongly type DefIds`)
       - #114800 (std: add some missing repr(transparent))
       - #114820 (Add test for unknown_lints from another file.)
       - #114825 (Upgrade std to gimli 0.28.0)
       - #114827 (Only consider object candidates for object-safe dyn types in new solver)
       - #114828 (Probe when assembling upcast candidates so they don't step on eachother's toes in new solver)
       - #114829 (Separate `consider_unsize_to_dyn_candidate` from other unsize candidates)
       - #114830 (Clean up some bad UI testing annotations)
       - #114831 (Check projection args before substitution in new solver)
      
      r? `@ghost`
      `@rustbot` modify labels: rollup
      c57393e4
    • I
      Document Default for ExitStatus · a741a5ad
      Ian Jackson 提交于
      This lets us put a version on the impl, too.
      a741a5ad
    • B
      Auto merge of #112387 - clarfonthey:non-panicking-ceil-char-boundary, r=m-ou-se · 4f4dae05
      bors 提交于
      Don't panic in ceil_char_boundary
      
      Implementing the alternative mentioned in this comment: https://github.com/rust-lang/rust/issues/93743#issuecomment-1579935853
      
      Since `floor_char_boundary` will always work (rounding down to the length of the string is possible), it feels best for `ceil_char_boundary` to not panic either. However, the semantics of "rounding up" past the length of the string aren't very great, which is why the method originally panicked in these cases.
      
      Taking into account how people are using this method, it feels best to simply return the end of the string in these cases, so that the result is still a valid char boundary.
      4f4dae05
    • M
      Fix typo. · 2f75dd4e
      Mara Bos 提交于
      Co-authored-by: NJosh Stone <cuviper@gmail.com>
      2f75dd4e