Skip to content

Commit 83a5422

Browse files
committed
Drop support for compilers older than 1.45
1 parent 22d017e commit 83a5422

File tree

2 files changed

+1
-7
lines changed

2 files changed

+1
-7
lines changed

build.rs

-4
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,6 @@ fn main() {
1010
None => return,
1111
};
1212

13-
if compiler < 45 {
14-
println!("cargo:rustc-cfg=no_span_mixed_site");
15-
}
16-
1713
if compiler < 47 {
1814
println!("cargo:rustc-cfg=self_span_hack");
1915
}

src/expand.rs

+1-3
Original file line numberDiff line numberDiff line change
@@ -427,9 +427,7 @@ fn transform_block(context: Context, sig: &mut Signature, block: &mut Block) {
427427
}
428428

429429
fn positional_arg(i: usize, pat: &Pat) -> Ident {
430-
let span: Span = syn::spanned::Spanned::span(pat);
431-
#[cfg(not(no_span_mixed_site))]
432-
let span = span.resolved_at(Span::mixed_site());
430+
let span = syn::spanned::Spanned::span(pat).resolved_at(Span::mixed_site());
433431
format_ident!("__arg{}", i, span = span)
434432
}
435433

0 commit comments

Comments
 (0)