Merge pull request #741 from luoliwoshang/llcppg/ast/scoping

llcppg/ast:scoping for Tagexpr
This commit is contained in:
xushiwei
2024-08-22 22:32:07 +08:00
committed by GitHub

View File

@@ -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() {}