mirror of
https://github.com/roc-lang/roc.git
synced 2025-10-03 08:34:33 +00:00
remove label from Struct layout
This commit is contained in:
parent
e2a7c970bc
commit
46062439b5
7 changed files with 233 additions and 211 deletions
|
@ -66,7 +66,7 @@ pub fn basic_type_from_layout<'ctx>(
|
|||
// Determine types
|
||||
let mut field_types = Vec::with_capacity_in(sorted_fields.len(), arena);
|
||||
|
||||
for (_, field_layout) in sorted_fields.iter() {
|
||||
for field_layout in sorted_fields.iter() {
|
||||
field_types.push(basic_type_from_layout(
|
||||
arena,
|
||||
context,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue