From e41dcfbbaa969a1bd86925e51a99c4c2474407ff Mon Sep 17 00:00:00 2001 From: WormHeamer Date: Mon, 27 Oct 2025 23:56:20 -0400 Subject: use u32 instead of unsigned in NodeList --- ir.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ir.h') diff --git a/ir.h b/ir.h index d10005c..8a2abb5 100644 --- a/ir.h +++ b/ir.h @@ -102,7 +102,7 @@ typedef enum { const char *node_type_name(NodeType t); typedef struct { - unsigned len, cap; + u32 len, cap; union { struct Node *sbo; struct Node **data; -- cgit v1.2.3