Skip to content

Rollup of 7 pull requests #65038

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 20 commits into from
Oct 3, 2019
Merged
Changes from 2 commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
5cbe6aa
Reword E0392 slightly
estebank Sep 30, 2019
7b480cd
Implement Clone::clone_from for LinkedList
crgl Oct 1, 2019
1245467
Improve HRTB error span when -Zno-leak-check is used
Aaron1011 Aug 18, 2019
1caa6dc
Fixup tests
Aaron1011 Oct 2, 2019
9c5a5c4
Rename to `was_placeholder` to `from_forall`
Aaron1011 Oct 2, 2019
ba54ef8
Add comments, rename variable
Aaron1011 Oct 2, 2019
2537a8a
syntax: improve parameter without type suggestions
davidtwco Oct 1, 2019
fb80e6c
BacktraceStatus: add Eq impl
mathstuf Oct 2, 2019
03455e4
Filter out RLS output directories on tidy runs
spastorino Oct 2, 2019
5055d4b
Use zipped iterators in clone_from for LinkedList
crgl Oct 2, 2019
df203a2
Compare primary with value instead of dropping it
AnthonyMikh Oct 2, 2019
864e6fe
Add test for LinkedList clone_from
crgl Oct 2, 2019
a180294
review comment
estebank Oct 2, 2019
3e15e51
Rollup merge of #63678 - Aaron1011:fix/hrtb-leak, r=nikomatsakis
Centril Oct 3, 2019
17b1fd1
Rollup merge of #64931 - estebank:missing-param-ref, r=matthewjasper,…
Centril Oct 3, 2019
faf2e80
Rollup merge of #64959 - davidtwco:issue-64252-self-type-help, r=Cent…
Centril Oct 3, 2019
c4f8fd2
Rollup merge of #64975 - crgl:clone-from-linked-list, r=bluss
Centril Oct 3, 2019
f188879
Rollup merge of #64993 - mathstuf:backtrace-status-eq, r=withoutboats
Centril Oct 3, 2019
4ea2be7
Rollup merge of #64998 - spastorino:filter-rls-on-tidy, r=petrochenkov
Centril Oct 3, 2019
d5a0765
Rollup merge of #65010 - AnthonyMikh:fix_65001, r=estebank
Centril Oct 3, 2019
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
3 changes: 3 additions & 0 deletions src/tools/tidy/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,9 @@ fn filter_dirs(path: &Path) -> bool {
"src/tools/rls",
"src/tools/rust-installer",
"src/tools/rustfmt",

// Filter RLS output directories
"target/rls",
];
skip.iter().any(|p| path.ends_with(p))
}
Expand Down