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:
parent
d11b09dd07
commit
0eea8eeef6
2 changed files with 33 additions and 26 deletions
|
@ -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();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue