mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-26 13:29:12 +00:00
Make generate_glue_procs take a trait
This commit is contained in:
parent
56f33c4e1c
commit
f24275c28f
1 changed files with 2 additions and 2 deletions
|
@ -10812,11 +10812,11 @@ pub struct GlueProcs<'a> {
|
|||
pub layouts: Vec<'a, Layout<'a>>,
|
||||
}
|
||||
|
||||
pub fn generate_glue_procs<'a>(
|
||||
pub fn generate_glue_procs<'a, I: Interner<'a, Layout<'a>>>(
|
||||
home: ModuleId,
|
||||
ident_ids: &mut IdentIds,
|
||||
arena: &'a Bump,
|
||||
layout_interner: &mut STLayoutInterner<'a>,
|
||||
layout_interner: &mut I,
|
||||
layout: Layout<'a>,
|
||||
) -> GlueProcs<'a> {
|
||||
let mut stack = Vec::new_in(arena);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue