Upgrade codegen

This commit is contained in:
Abdelrahman Said
2025-04-17 09:03:30 +01:00
parent aa04fab6ea
commit 3c32b247c0
15 changed files with 66 additions and 46 deletions

View File

@@ -2,7 +2,7 @@
return;
}}
{T}List node_list = {Tlower}_node_to_list(node);
{Ttitle}List node_list = {Tlower}_node_to_list(node);
if (list->node_count == 0) {{
*list = node_list;
@@ -11,7 +11,7 @@
list->node_count += node_list.node_count;
{T}Node *first = list->first;
{Ttitle}Node *first = list->first;
if (first) {{
first->prev = node_list.last;
}}