Skip to content

Rollup of 7 pull requests #90975

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 20 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
958de5a
warn on must_use use on async fn's
guswynn Oct 6, 2021
1ac5d7d
std: Tweak expansion of thread-local const
alexcrichton Nov 10, 2021
c15b55a
Add Vec::retain_mut
GuillaumeGomez Nov 10, 2021
24acf86
Fix span for non-satisfied trivial trait bounds
Noratrieb Nov 13, 2021
f980f81
Improve ManuallyDrop suggestion
rukai Nov 14, 2021
50ec47a
Remove workaround for the forward progress handling in LLVM
andjo403 Nov 14, 2021
62acf7f
feedback
rukai Nov 15, 2021
de05d3e
Print full char literal on error if any are non-printing
5225225 Nov 13, 2021
52199c9
Suggest removing the non-printing characters
5225225 Nov 13, 2021
17b5e2d
Remove debug output from test stderr
5225225 Nov 13, 2021
09e59c2
Inline printable function
5225225 Nov 13, 2021
eee29b0
Increase tidy limit for parser by 1
5225225 Nov 16, 2021
83ce771
Update compiler/rustc_passes/src/check_attr.rs
wesleywiser Nov 16, 2021
1f4710c
Rollup merge of #89610 - guswynn:must_use_future, r=wesleywiser
matthiaskrgr Nov 17, 2021
227c239
Rollup merge of #90772 - GuillaumeGomez:vec-retain-mut, r=joshtriplett
matthiaskrgr Nov 17, 2021
3a55f2f
Rollup merge of #90774 - alexcrichton:tweak-const, r=m-ou-se
matthiaskrgr Nov 17, 2021
e0aa2ee
Rollup merge of #90861 - 5225225:nonprinting-char, r=davidtwco
matthiaskrgr Nov 17, 2021
09743d2
Rollup merge of #90884 - Nilstrieb:fix-span-trivial-trait-bound, r=es…
matthiaskrgr Nov 17, 2021
e27588a
Rollup merge of #90900 - andjo403:removeLlvm12Check, r=nikic
matthiaskrgr Nov 17, 2021
7e1cc71
Rollup merge of #90901 - rukai:improve_manuallydrop_help, r=estebank
matthiaskrgr Nov 17, 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
Prev Previous commit
Next Next commit
Increase tidy limit for parser by 1
  • Loading branch information
5225225 committed Nov 16, 2021
commit eee29b0b95aedd9568df63a49340ca6efbf4bbb0
2 changes: 1 addition & 1 deletion src/tools/tidy/src/ui_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const ENTRY_LIMIT: usize = 1000;
// FIXME: The following limits should be reduced eventually.
const ROOT_ENTRY_LIMIT: usize = 1102;
const ISSUES_ENTRY_LIMIT: usize = 2310;
const PARSER_LIMIT: usize = 1004;
const PARSER_LIMIT: usize = 1005;

fn check_entries(path: &Path, bad: &mut bool) {
let dirs = walkdir::WalkDir::new(&path.join("test/ui"))
Expand Down