mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-25 18:03:37 +08:00
Fix clippy lint in widestring-suffix
This commit is contained in:
parent
2f86b31bd3
commit
1fa56972b5
|
@ -44,7 +44,7 @@ fn widen_literal(lit: Literal) -> TokenStream {
|
||||||
Some(lit) if lit.suffix() == "L" => {
|
Some(lit) if lit.suffix() == "L" => {
|
||||||
let value = lit.value();
|
let value = lit.value();
|
||||||
let span = lit.span();
|
let span = lit.span();
|
||||||
quote_spanned!(span=> crate::wchar::L!(#value)).into()
|
quote_spanned!(span=> crate::wchar::L!(#value))
|
||||||
}
|
}
|
||||||
_ => tt.into(),
|
_ => tt.into(),
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user