clippy
This commit is contained in:
parent
5779b77ccc
commit
60bc2ab61d
|
@ -1,4 +1,4 @@
|
||||||
use std::{cell::RefCell, rc::Rc, sync::Arc};
|
use std::{rc::Rc, sync::Arc};
|
||||||
|
|
||||||
use indexmap::{IndexMap, IndexSet};
|
use indexmap::{IndexMap, IndexSet};
|
||||||
use itertools::Itertools;
|
use itertools::Itertools;
|
||||||
|
|
|
@ -3277,7 +3277,7 @@ impl<'a> CodeGenerator<'a> {
|
||||||
let mut map = mono_types.into_iter().collect_vec();
|
let mut map = mono_types.into_iter().collect_vec();
|
||||||
let param_type = ¶m_types[index];
|
let param_type = ¶m_types[index];
|
||||||
|
|
||||||
map.append(&mut get_generics_and_type(&arg.tipo, ¶m_type));
|
map.append(&mut get_generics_and_type(&arg.tipo, param_type));
|
||||||
|
|
||||||
mono_types = map.into_iter().collect();
|
mono_types = map.into_iter().collect();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue