mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-10-03 15:15:24 +00:00
Slim down GenericArgs by one usize once more
This commit is contained in:
parent
853ae1927d
commit
4aee911ce4
4 changed files with 26 additions and 15 deletions
|
@ -1419,7 +1419,7 @@ impl HirDisplay for Path {
|
|||
|
||||
write!(f, "<")?;
|
||||
let mut first = true;
|
||||
for arg in &generic_args.args {
|
||||
for arg in generic_args.args.iter() {
|
||||
if first {
|
||||
first = false;
|
||||
if generic_args.has_self_type {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue