Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rollup of 11 pull requests #104845

Merged
merged 22 commits into from
Nov 25, 2022
Merged

Rollup of 11 pull requests #104845

merged 22 commits into from
Nov 25, 2022

Commits on Nov 22, 2022

  1. Configuration menu
    Copy the full SHA
    85c9985 View commit details
    Browse the repository at this point in the history
  2. resolve: Don't use constructor def ids in the map for field names

    Also do some minor cleanup to insertion of those field names
    petrochenkov committed Nov 22, 2022
    Configuration menu
    Copy the full SHA
    5fc359f View commit details
    Browse the repository at this point in the history

Commits on Nov 23, 2022

  1. Configuration menu
    Copy the full SHA
    46b37e2 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    6c2719a View commit details
    Browse the repository at this point in the history
  3. rustdoc: simplify .search-results-title CSS

    By using `display: flex`, we still get the never-wrapping layout with
    `#crate-search-div` maxing out and truncating its text. The title itself
    winds up always filling its parent, but since `#crate-search` doesn't have
    `flex-grow` set, it won't fill available space.
    notriddle committed Nov 23, 2022
    Configuration menu
    Copy the full SHA
    2185f49 View commit details
    Browse the repository at this point in the history

Commits on Nov 24, 2022

  1. Configuration menu
    Copy the full SHA
    97d95d4 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    ecea94e View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    72d8879 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    1930c77 View commit details
    Browse the repository at this point in the history
  5. with_query_mode -> new

    spastorino committed Nov 24, 2022
    Configuration menu
    Copy the full SHA
    66b4b8b View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    07ccf67 View commit details
    Browse the repository at this point in the history
  7. Rollup merge of rust-lang#104514 - chenyukang:yukang/fix-104513-ice, …

    …r=petrochenkov
    
    Use node_ty_opt to avoid ICE in visit_ty
    
    Fixes rust-lang#104513
    matthiaskrgr authored Nov 24, 2022
    Configuration menu
    Copy the full SHA
    80dc91c View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    7a17d61 View commit details
    Browse the repository at this point in the history
  9. Rollup merge of rust-lang#104747 - petrochenkov:ctorfields, r=cjgillot

    resolve: Don't use constructor def ids in the map for field names
    
    Also do some minor cleanup to insertion of those field names.
    
    Addresses a FIXME left in rust-lang#103578.
    matthiaskrgr authored Nov 24, 2022
    Configuration menu
    Copy the full SHA
    0e4eb0d View commit details
    Browse the repository at this point in the history
  10. Rollup merge of rust-lang#104773 - oli-obk:overlap, r=lcnr

    OpaqueCast projections are always overlapping, they can't possibly be disjoint
    
    r? ``@lcnr``
    matthiaskrgr authored Nov 24, 2022
    Configuration menu
    Copy the full SHA
    9a558b6 View commit details
    Browse the repository at this point in the history
  11. Rollup merge of rust-lang#104774 - vojtechkral:doc-str-empty-split-wh…

    …itespace, r=thomcc
    
    Document split{_ascii,}_whitespace() for empty strings
    
    doc change only
    matthiaskrgr authored Nov 24, 2022
    Configuration menu
    Copy the full SHA
    d4e5418 View commit details
    Browse the repository at this point in the history
  12. Rollup merge of rust-lang#104780 - BoxyUwU:error_reported_not_be_bad,…

    … r=oli-obk
    
    make `error_reported` check for delayed bugs
    
    Fixes rust-lang#104768
    
    `error_reported()` was only checking if there were errors emitted, not for `delay_bug`s which can also be a source of `ErrorGuaranteed`. I assume the same is true of `lint_err_count` but i dont know
    matthiaskrgr authored Nov 24, 2022
    Configuration menu
    Copy the full SHA
    4843946 View commit details
    Browse the repository at this point in the history
  13. Rollup merge of rust-lang#104782 - oli-obk:const_eval_limit_bump, r=p…

    …nkfelix
    
    Bump the const eval step limit
    
    fixes rust-lang#103814
    
    rust-lang#103877 has too much of an impact to beta backport. So let's just increase the limit, avoiding the immediate breakage.
    
    r? ``@pnkfelix``
    matthiaskrgr authored Nov 24, 2022
    Configuration menu
    Copy the full SHA
    679f1b7 View commit details
    Browse the repository at this point in the history
  14. Rollup merge of rust-lang#104792 - notriddle:notriddle/crate-search-t…

    …itle-display, r=GuillaumeGomez
    
    rustdoc: simplify `.search-results-title` CSS
    
    By using `display: flex`, we still get the never-wrapping layout with `#crate-search-div` maxing out and truncating its text. The title itself winds up always filling its parent, but since `#crate-search` doesn't have `flex-grow` set, it won't fill available space.
    matthiaskrgr authored Nov 24, 2022
    Configuration menu
    Copy the full SHA
    ed2d936 View commit details
    Browse the repository at this point in the history
  15. Rollup merge of rust-lang#104796 - notriddle:notriddle/unused-issue-1…

    …04397, r=oli-obk
    
    lint: do not warn unused parens around higher-ranked function pointers
    
    Fixes rust-lang#104397
    matthiaskrgr authored Nov 24, 2022
    Configuration menu
    Copy the full SHA
    83d1aab View commit details
    Browse the repository at this point in the history
  16. Rollup merge of rust-lang#104820 - spastorino:remove-normalize_projec…

    …tion_type, r=jackh726
    
    Remove normalize_projection_type
    
    r? ``@lcnr``
    matthiaskrgr authored Nov 24, 2022
    Configuration menu
    Copy the full SHA
    73f01ff View commit details
    Browse the repository at this point in the history
  17. Rollup merge of rust-lang#104822 - spastorino:selctx-new-instead-of-w…

    …ith_query_mode, r=lcnr
    
    with_query_mode -> new
    
    r? ```@lcnr```
    matthiaskrgr authored Nov 24, 2022
    Configuration menu
    Copy the full SHA
    1048a85 View commit details
    Browse the repository at this point in the history