added missing payloads to union in example C implementation for non-pointer-tagged recursive tag union

This commit is contained in:
svcxc 2025-01-14 09:33:57 +01:00
parent 7f8be9f56d
commit 4d79fa0893
No known key found for this signature in database
GPG key ID: E14BEA79180F7122

View file

@ -293,6 +293,13 @@ struct Expr_allocation {
union {
Expr_Concat Concat;
RocStr String;
uint8_t Tag3;
uint8_t Tag4;
uint8_t Tag5;
uint8_t Tag6;
uint8_t Tag7;
uint8_t Tag8;
uint8_t Tag9;
} payload;
enum {
Concat = 0,