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 6 pull requests #130357

Merged
merged 23 commits into from
Sep 14, 2024
Merged
Changes from 1 commit
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
e96b4e4
coverage: Extract `executor::block_on` from several async coverage tests
Zalathar Sep 6, 2024
d0be42d
Remove unnecessary lifetime from `UnsafeInferVarsVisitor`.
nnethercote Sep 6, 2024
0b2235d
Stabilize entry_insert
passcod Sep 12, 2024
c1121f8
Remove unnecessary lifetime from `FeaturePreviouslyDeclared`.
nnethercote Sep 10, 2024
5138399
Remove unnecessary lifetime from `BuiltinTypeAliasBounds`.
nnethercote Sep 11, 2024
0b59bba
Remove unnecessary lifetime from `CheckLoopVisitor`.
nnethercote Sep 12, 2024
65863c5
Remove unnecessary lifetimes from `Arena`.
nnethercote Sep 11, 2024
7b613ed
Remove unnecessary lifetimes from `rustc_expand`.
nnethercote Sep 12, 2024
072bf48
Remove unnecessary lifetime from `RunCompiler`.
nnethercote Sep 12, 2024
606b9cb
Rename some lifetimes.
nnethercote Sep 10, 2024
8d32578
Rename and reorder lots of lifetimes.
nnethercote Sep 11, 2024
359b658
Remove `sess` from `CheckLoopVisitor`.
nnethercote Sep 13, 2024
14285e9
docs: Enable required feature for 'closure_returning_async_block' lint
Fayti1703 Sep 14, 2024
003da02
Add `ErrorGuaranteed` to `DestructuredFloat::Error`
ShE3py Sep 14, 2024
3d20c81
Fix `Parser::break_up_float`'s right span
ShE3py Sep 14, 2024
4cb5849
Refactor `Parser::break_up_float`
ShE3py Sep 14, 2024
60ee1b7
simd_shuffle: require index argument to be a vector
RalfJung Sep 12, 2024
2b12b57
Rollup merge of #130017 - Zalathar:executor, r=Mark-Simulacrum
fmease Sep 14, 2024
a9dcd7f
Rollup merge of #130268 - RalfJung:simd-shuffle-idx-vector, r=compile…
fmease Sep 14, 2024
f873367
Rollup merge of #130290 - passcod:stabilise-entry-insert, r=ChrisDenton
fmease Sep 14, 2024
03e8b6b
Rollup merge of #130294 - nnethercote:more-lifetimes, r=lcnr
fmease Sep 14, 2024
d1701a5
Rollup merge of #130343 - Fayti1703:patch-correct-async-block-lint-do…
fmease Sep 14, 2024
2b40fdb
Rollup merge of #130349 - ShE3py:break_up_float, r=fmease
fmease Sep 14, 2024
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 unnecessary lifetimes from rustc_expand.
  • Loading branch information
nnethercote committed Sep 13, 2024
commit 7b613ed8d2b012c40cf326314b4b025141474f30
8 changes: 4 additions & 4 deletions compiler/rustc_expand/src/proc_macro.rs
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,9 @@ pub struct BangProcMacro {
}

impl base::BangProcMacro for BangProcMacro {
fn expand<'cx>(
fn expand(
&self,
ecx: &'cx mut ExtCtxt<'_>,
ecx: &mut ExtCtxt<'_>,
span: Span,
input: TokenStream,
) -> Result<TokenStream, ErrorGuaranteed> {
Expand Down Expand Up @@ -73,9 +73,9 @@ pub struct AttrProcMacro {
}

impl base::AttrProcMacro for AttrProcMacro {
fn expand<'cx>(
fn expand(
&self,
ecx: &'cx mut ExtCtxt<'_>,
ecx: &mut ExtCtxt<'_>,
span: Span,
annotation: TokenStream,
annotated: TokenStream,
Expand Down