Skip to content

Rollup of 10 pull requests #87806

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 25 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
3171bd5
ignore comments in tidy-filelength
ibraheemdev Jul 25, 2021
a77d6ff
add long error explanation for E0625
bhgomes Aug 3, 2021
2fd874d
Fix overflow when calculating expected_min in generics diagnostics
SkiFire13 Aug 3, 2021
ae313da
Add regression tests
SkiFire13 Aug 3, 2021
e3389be
Bless test
SkiFire13 Aug 3, 2021
2f85aa6
remove trailing newline
bhgomes Aug 3, 2021
a96fd57
Validate FFI-safety warnings on naked functions
npmccallum Aug 3, 2021
1247f9b
Add back -Zno-profiler-runtime
Amanieu Aug 4, 2021
f280a12
Re-use std::sealed::Sealed in os/linux/process.
m-ou-se Aug 4, 2021
94ffa00
Promote `aarch64-apple-ios-sim` to Tier 2
badboy Aug 2, 2021
b1d14ef
dropck
BoxyUwU Aug 4, 2021
dc5f6d2
move full explanation to after erroneous example
bhgomes Aug 4, 2021
fa46715
remove tywf relation
BoxyUwU Aug 5, 2021
1db8737
alloc: Use intra doc links for the reserve function
est31 Aug 5, 2021
1a7e56c
Remove special case for statement `NodeId` assignment
Aaron1011 Aug 5, 2021
a633895
Rollup merge of #87462 - ibraheemdev:tidy-file-length-ignore-comment,…
JohnTitor Aug 6, 2021
f13c61d
Rollup merge of #87715 - bhgomes:long-explanation-E0625, r=GuillaumeG…
JohnTitor Aug 6, 2021
928c719
Rollup merge of #87727 - SkiFire13:fix-87718, r=jackh726
JohnTitor Aug 6, 2021
bd8858b
Rollup merge of #87742 - npmccallum:naked_ffi, r=Amanieu
JohnTitor Aug 6, 2021
0fc0614
Rollup merge of #87756 - Amanieu:no_profiler_runtime, r=jackh726
JohnTitor Aug 6, 2021
57ffa31
Rollup merge of #87759 - m-ou-se:linux-process-sealed, r=jyn514
JohnTitor Aug 6, 2021
f91d8d1
Rollup merge of #87760 - badboy:promote-ios-sim-target, r=Mark-Simula…
JohnTitor Aug 6, 2021
5f37944
Rollup merge of #87770 - BoxyUwU:cec-drop-impl, r=lcnr
JohnTitor Aug 6, 2021
7353e2f
Rollup merge of #87779 - Aaron1011:stmt-ast-id, r=petrochenkov
JohnTitor Aug 6, 2021
0b3a5b0
Rollup merge of #87780 - est31:intra_doc_links, r=jyn514
JohnTitor Aug 6, 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
Fix overflow when calculating expected_min in generics diagnostics
  • Loading branch information
SkiFire13 committed Aug 3, 2021
commit 2fd874d0d5ec1618e488d0d10b8b67553aeaaf1e
1 change: 0 additions & 1 deletion compiler/rustc_typeck/src/astconv/generics.rs
Original file line number Diff line number Diff line change
Expand Up @@ -613,7 +613,6 @@ impl<'o, 'tcx> dyn AstConv<'tcx> + 'o {
param_counts.consts + named_type_param_count
- default_counts.types
- default_counts.consts
- synth_type_param_count
};
debug!("expected_min: {:?}", expected_min);
debug!("arg_counts.lifetimes: {:?}", gen_args.num_lifetime_params());
Expand Down