1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-10 20:42:21 +02:00

Fixed missing-comma formatting

This commit is contained in:
Brian Fiete 2020-09-06 05:28:19 -07:00
parent d11b09dd07
commit 0eea8eeef6
2 changed files with 33 additions and 26 deletions

View file

@ -400,6 +400,13 @@ public:
nodeRef->Accept(this);
mCurChildRef = NULL;
}
template <typename T>
void VisitChildNoRef(const T& nodeRef)
{
if ((BfAstNode*)nodeRef == NULL)
return;
nodeRef->Accept(this);
};
public:
BfStructuralVisitor();