mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-09-27 12:29:21 +00:00
Remove redundant semicolon
This commit is contained in:
parent
5df3ee8274
commit
2f7b03b01c
1 changed files with 1 additions and 1 deletions
|
@ -177,7 +177,7 @@ fn invocation_fixtures(rules: &FxHashMap<String, MacroRules>) -> Vec<(String, tt
|
||||||
let c = 1013904223;
|
let c = 1013904223;
|
||||||
*seed = usize::wrapping_add(usize::wrapping_mul(*seed, a), c);
|
*seed = usize::wrapping_add(usize::wrapping_mul(*seed, a), c);
|
||||||
return *seed;
|
return *seed;
|
||||||
};
|
}
|
||||||
fn make_ident(ident: &str) -> tt::TokenTree {
|
fn make_ident(ident: &str) -> tt::TokenTree {
|
||||||
tt::Leaf::Ident(tt::Ident { id: tt::TokenId::unspecified(), text: SmolStr::new(ident) })
|
tt::Leaf::Ident(tt::Ident { id: tt::TokenId::unspecified(), text: SmolStr::new(ident) })
|
||||||
.into()
|
.into()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue