aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/ast.h
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2025-09-01 23:32:41 +0900
committernsfisis <nsfisis@gmail.com>2025-09-01 23:55:56 +0900
commit5c1716417609ac2cea1470b3d3bb38a6e758279a (patch)
tree54047e6c04209b08599efac91d01cffee7c66135 /src/ast.h
parentc5cf38fffec9b7e0a96cc3f016c3a01820498953 (diff)
downloadducc-5c1716417609ac2cea1470b3d3bb38a6e758279a.tar.gz
ducc-5c1716417609ac2cea1470b3d3bb38a6e758279a.tar.zst
ducc-5c1716417609ac2cea1470b3d3bb38a6e758279a.zip
feat: support array type in struct/union members
Diffstat (limited to 'src/ast.h')
-rw-r--r--src/ast.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/ast.h b/src/ast.h
index 13fbf55..399befc 100644
--- a/src/ast.h
+++ b/src/ast.h
@@ -116,7 +116,6 @@ enum AstNodeKind {
AstNodeKind_unary_expr,
AstNodeKind_union_decl,
AstNodeKind_union_def,
- AstNodeKind_union_member,
// Intermediate ASTs: they are used only in parsing, not for parse result.
AstNodeKind_declarator,