mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-10-02 22:54:58 +00:00
Slim down GenericArgs by one usize
This commit is contained in:
parent
4c2aef650a
commit
853ae1927d
7 changed files with 22 additions and 17 deletions
|
@ -1431,7 +1431,7 @@ impl HirDisplay for Path {
|
|||
}
|
||||
arg.hir_fmt(f)?;
|
||||
}
|
||||
for binding in &generic_args.bindings {
|
||||
for binding in generic_args.bindings.iter() {
|
||||
if first {
|
||||
first = false;
|
||||
} else {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue