mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-30 15:21:12 +00:00
fix(List): map3 ref count use dec_c on third list
This commit is contained in:
parent
268ab82410
commit
9fc572ace9
1 changed files with 1 additions and 1 deletions
|
@ -253,7 +253,7 @@ pub fn listMap3(list1: RocList, list2: RocList, list3: RocList, transform: Opaqu
|
|||
if (list3.len() > output_length) {
|
||||
while (i < list3.len()) : (i += 1) {
|
||||
const element_c = source_c + i * c_width;
|
||||
dec_b(element_c);
|
||||
dec_c(element_c);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue