mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-30 07:14:46 +00:00
Removed incorrect comment
This commit is contained in:
parent
20b0e986ad
commit
2f440ecb6a
1 changed files with 1 additions and 4 deletions
|
@ -1803,10 +1803,7 @@ fn list_push<'a, 'ctx, 'env>(
|
||||||
|
|
||||||
// The output list length, which is the old list length + 1
|
// The output list length, which is the old list length + 1
|
||||||
let new_list_len = env.builder.build_int_add(
|
let new_list_len = env.builder.build_int_add(
|
||||||
ctx.i64_type().const_int(
|
ctx.i64_type().const_int(1 as u64, false),
|
||||||
// 0 as in 0 index of our new list
|
|
||||||
1 as u64, false,
|
|
||||||
),
|
|
||||||
list_len,
|
list_len,
|
||||||
"new_list_length",
|
"new_list_length",
|
||||||
);
|
);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue