Skip to content

Rollup of 8 pull requests #89226

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

Closed
wants to merge 26 commits into from
Closed
Changes from 2 commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
be76bdf
Remove ToPredicate impls that use Binder::dummy
jackh726 Sep 16, 2021
c065f57
Remove ToPolyTraitRef impl for TraitRef
jackh726 Sep 16, 2021
b73c8b8
Fix rustdoc
jackh726 Sep 16, 2021
553f649
Fix clippy
jackh726 Sep 16, 2021
9886c23
Remove Symbol::len
bjorn3 Sep 18, 2021
4e0ee2a
Avoid a couple of Symbol::as_str calls in cg_llvm
bjorn3 Sep 18, 2021
df72749
Make SymbolIndex private
bjorn3 Sep 18, 2021
0222556
Simplify scoped_thread
Mark-Simulacrum Sep 19, 2021
7a3e450
Add tests to verify the drop order of fields in fully captured upvars
wesleywiser Sep 23, 2021
ab8aef4
Drop fully captured upvars in the same order as the regular drop code
wesleywiser Sep 23, 2021
d63e0f0
Add time complexities to linked_list.rs
Takashiidobe Sep 23, 2021
b146525
remove trailing whitespace
Takashiidobe Sep 23, 2021
3893656
Fix tidy and respond to some feedback
wesleywiser Sep 24, 2021
9fa59e1
Enable "generate-link-to-definition" option on rust tools docs as well
GuillaumeGomez Sep 24, 2021
cb1c06f
Merge branch 'rust-lang:master' into master
Takashiidobe Sep 24, 2021
cebba31
unitalicize O(1) complexities
Takashiidobe Sep 24, 2021
ed3b751
Give better error for `macro_rules! name!`
aDotInTheVoid Sep 24, 2021
a307dcc
Add 1.56.0 release notes
Mark-Simulacrum Sep 12, 2021
790dc54
Rollup merge of #88893 - Mark-Simulacrum:relnotes, r=pietroalbini
Manishearth Sep 24, 2021
f24b753
Rollup merge of #89001 - jackh726:binder-cleanup, r=nikomatsakis
Manishearth Sep 24, 2021
6b12f3e
Rollup merge of #89072 - bjorn3:less_symbol_as_str, r=michaelwoerister
Manishearth Sep 24, 2021
be29631
Rollup merge of #89104 - Mark-Simulacrum:spawn-unchecked, r=nagisa,bj…
Manishearth Sep 24, 2021
6d29df8
Rollup merge of #89208 - wesleywiser:rfc_2229_droporder, r=nikomatsakis
Manishearth Sep 24, 2021
23c28e3
Rollup merge of #89210 - Takashiidobe:master, r=kennytm
Manishearth Sep 24, 2021
913b9df
Rollup merge of #89217 - GuillaumeGomez:generate-link-to-def-rust-too…
Manishearth Sep 24, 2021
3f43f22
Rollup merge of #89221 - aDotInTheVoid:macro-error-1, r=estebank
Manishearth Sep 24, 2021
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
1 change: 1 addition & 0 deletions src/bootstrap/doc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -743,6 +743,7 @@ macro_rules! tool_doc {
cargo.rustdocflag("--document-private-items");
cargo.rustdocflag("--enable-index-page");
cargo.rustdocflag("--show-type-layout");
cargo.rustdocflag("--generate-link-to-definition");
cargo.rustdocflag("-Zunstable-options");
builder.run(&mut cargo.into());
}
Expand Down