Skip to content

Rollup of 10 pull requests #103954

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

Merged
merged 23 commits into from
Nov 4, 2022
Merged
Changes from 1 commit
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
a0c21e4
Remove let_underscore_must_use from list of uplifted lints
Mark-Simulacrum Nov 1, 2022
7df9d81
deprecate DelaySpanBugEmitted and use ErrorGuaranteed directly
chenyukang Nov 2, 2022
59be515
Properly render asyncness for traits without default body
compiler-errors Nov 2, 2022
ab22f55
change error_reported to use Result instead of an option
chenyukang Nov 2, 2022
68e19aa
rustdoc: remove redundant mobile CSS `.sidebar-elems { background }`
notriddle Nov 2, 2022
a21a055
remove 'delay_span_bug' following 'references_error'
chenyukang Nov 3, 2022
c6d23bd
code cleanup
chenyukang Nov 3, 2022
87b2110
Add howto for adding new targets
flba-eb Nov 3, 2022
ba18f16
Add visit_fn_ret_ty to hir intravisit
spastorino Oct 26, 2022
9c79a27
Add note to RELEASES.md regarding issue 102754.
pnkfelix Nov 3, 2022
35b16d0
Move some tests from `src/test/ui` to more reasonable places
fee1-dead Nov 3, 2022
f097940
rustdoc: clean up hardcoded CSS border color on search results
notriddle Nov 3, 2022
c51c07d
rustdoc: remove no-op CSS `#main-content > .item-info { margin-top: 0 }`
notriddle Nov 3, 2022
a5efeb3
Rollup merge of #103825 - Mark-Simulacrum:fix-relnotes, r=pietroalbini
matthiaskrgr Nov 4, 2022
14fdfcb
Rollup merge of #103884 - spastorino:visit-fn-ret-ty-intravisit, r=co…
matthiaskrgr Nov 4, 2022
6e582ca
Rollup merge of #103892 - compiler-errors:afit-rustdoc, r=GuillaumeGomez
matthiaskrgr Nov 4, 2022
a81a531
Rollup merge of #103905 - notriddle:notriddle/sidebar-elems-backgroun…
matthiaskrgr Nov 4, 2022
47bf743
Rollup merge of #103912 - flba-eb:doc_adding_tier3_target, r=davidtwco
matthiaskrgr Nov 4, 2022
61c6cdb
Rollup merge of #103915 - chenyukang:yukang/fix-103874, r=lcnr
matthiaskrgr Nov 4, 2022
e6eaa2f
Rollup merge of #103930 - fee1-dead-contrib:mv-from-root, r=jyn514
matthiaskrgr Nov 4, 2022
9ef3b41
Rollup merge of #103931 - pnkfelix:note-eh-personality-limit-atop-lld…
matthiaskrgr Nov 4, 2022
f35dccb
Rollup merge of #103938 - notriddle:notriddle/search-results-border-b…
matthiaskrgr Nov 4, 2022
923d907
Rollup merge of #103940 - notriddle:notriddle/main-content-item-info-…
matthiaskrgr Nov 4, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Remove let_underscore_must_use from list of uplifted lints
  • Loading branch information
Mark-Simulacrum committed Nov 1, 2022
commit a0c21e4e7ea3a2143af9e65a98a19e6b1942ff53
2 changes: 1 addition & 1 deletion RELEASES.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Language
- [Error on `as` casts of enums with `#[non_exhaustive]` variants](https://github.com/rust-lang/rust/pull/92744/)
- [Stabilize `let else`](https://github.com/rust-lang/rust/pull/93628/)
- [Stabilize generic associated types (GATs)](https://github.com/rust-lang/rust/pull/96709/)
- [Add lints `let_underscore_drop`, `let_underscore_lock`, and `let_underscore_must_use` from Clippy](https://github.com/rust-lang/rust/pull/97739/)
- [Add lints `let_underscore_drop` and `let_underscore_lock` from Clippy](https://github.com/rust-lang/rust/pull/97739/)
- [Stabilize `break`ing from arbitrary labeled blocks ("label-break-value")](https://github.com/rust-lang/rust/pull/99332/)
- [Uninitialized integers, floats, and raw pointers are now considered immediate UB](https://github.com/rust-lang/rust/pull/98919/).
Usage of `MaybeUninit` is the correct way to work with uninitialized memory.
Expand Down