From 63aad4b9bf3afe1f3f57778e9ef39d4575bc075b Mon Sep 17 00:00:00 2001 From: luoliwoshang <2643523683@qq.com> Date: Thu, 22 Aug 2024 17:17:51 +0800 Subject: [PATCH] llcppg/ast:scoping for Tagexpr --- chore/llcppg/ast/ast.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/chore/llcppg/ast/ast.go b/chore/llcppg/ast/ast.go index ee5cb725..807a8267 100644 --- a/chore/llcppg/ast/ast.go +++ b/chore/llcppg/ast/ast.go @@ -130,10 +130,10 @@ const ( Class ) -// struct/union/enum/class Name +// struct/union/enum/class (A::B::)Name type TagExpr struct { Tag Tag - Name *Ident + Name Expr // ScopingExpr, Ident } func (*TagExpr) exprNode() {}