From 1aa82062687510dc689d59868e58299eb0175d26 Mon Sep 17 00:00:00 2001 From: servostar Date: Tue, 28 May 2024 12:36:33 +0200 Subject: [PATCH] fixed: missing kind in statement --- src/set/types.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/set/types.h b/src/set/types.h index 52744a1..aedb167 100644 --- a/src/set/types.h +++ b/src/set/types.h @@ -471,6 +471,7 @@ typedef enum StatementKind_t { } StatementKind; typedef struct Statement_t { + StatementKind kind; union StatementImplementation { FunctionCall call; FunctionBoxCall boxCall;