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 7 pull requests #99001

Closed
wants to merge 25 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
b22450f
created tcpstream quickack trait
Apr 22, 2022
907ea55
Adapt tests to be able to run in miri
Noratrieb Jun 3, 2022
4d67f5b
Remove needless FIXME
camelid Jun 29, 2022
8192288
Replace weird handling of edge case with panic
camelid Jun 29, 2022
2d2fd31
Remove FIXME that hasn't been an issue in practice
camelid Jun 29, 2022
1eb1d91
Make MIR basic blocks field public
tmiasko Jul 4, 2022
f14a887
Move `is_cfg_cyclic` from Body to BasicBlocks
tmiasko Jul 5, 2022
d32e13e
Move `predecessors` from Body to BasicBlocks
tmiasko Jul 5, 2022
a7bdce3
Move `switch_sources` from Body to BasicBlocks
tmiasko Jul 5, 2022
802cb1c
Move `dominators` from Body to BasicBlocks
tmiasko Jul 5, 2022
a2799b2
fix projectionelem validation
beepster4096 May 9, 2022
211fb66
Fix stacked borrows violation in rustc_arena
Noratrieb Jun 3, 2022
14d288f
socket `set_mark` addition.
devnexen Apr 23, 2022
48ef00e
doc additions
devnexen Apr 27, 2022
10f5a19
changes from feedback
devnexen Jul 6, 2022
6c6388c
Document, that some lint have to be expected on the crate level (RFC …
xFrednet Jun 16, 2022
c8b4873
Add function to manually fulfill lint expectations (RFC 2383)
xFrednet Jun 16, 2022
a2810cd
Fix `#[expect]` and `#[allow]` for `clippy::duplicate_mod`
xFrednet Jun 25, 2022
91a3ce8
Rollup merge of #96324 - berendjan:set_tcp_quickack, r=dtolnay
Dylan-DPC Jul 7, 2022
7eaf0c9
Rollup merge of #96334 - devnexen:socket_mark, r=dtolnay
Dylan-DPC Jul 7, 2022
7ede77f
Rollup merge of #96856 - DrMeepster:fix_projection_validation, r=Icnr
Dylan-DPC Jul 7, 2022
3ce668e
Rollup merge of #97711 - Nilstrieb:rustc-arena-ub, r=wesleywiser
Dylan-DPC Jul 7, 2022
7260f7e
Rollup merge of #98507 - xFrednet:rfc-2383-manual-expectation-magic, …
Dylan-DPC Jul 7, 2022
c78e7f5
Rollup merge of #98692 - camelid:more-fixmes, r=GuillaumeGomez
Dylan-DPC Jul 7, 2022
36f7f55
Rollup merge of #98930 - tmiasko:pub-basic-blocks, r=oli-obk
Dylan-DPC Jul 7, 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
Prev Previous commit
Next Next commit
Remove FIXME that hasn't been an issue in practice
camelid committed Jun 29, 2022
commit 2d2fd3168707567a1349230c0be609a860e60759
1 change: 0 additions & 1 deletion src/librustdoc/clean/mod.rs
Original file line number Diff line number Diff line change
@@ -1759,7 +1759,6 @@ fn is_field_vis_inherited(tcx: TyCtxt<'_>, def_id: DefId) -> bool {
match tcx.def_kind(parent) {
DefKind::Struct | DefKind::Union => false,
DefKind::Variant => true,
// FIXME: what about DefKind::Ctor?
parent_kind => panic!("unexpected parent kind: {:?}", parent_kind),
}
}