mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-10 20:42:21 +02:00
this-> fix
This commit is contained in:
parent
4571221551
commit
4765bd9738
1 changed files with 4 additions and 4 deletions
|
@ -987,11 +987,11 @@ public:
|
|||
~BfDeferredAstNodeSizedArray()
|
||||
{
|
||||
BfSizedArrayInitIndirect(*mSizedArray, *this, mAlloc);
|
||||
if (!mSizedArray->IsEmpty())
|
||||
if (!this->mSizedArray->IsEmpty())
|
||||
{
|
||||
int endPos = mSizedArray->back()->mSrcEnd;
|
||||
if (endPos > mParentNode->mSrcEnd)
|
||||
mParentNode->mSrcEnd = endPos;
|
||||
int endPos = this->mSizedArray->back()->mSrcEnd;
|
||||
if (endPos > this->mParentNode->mSrcEnd)
|
||||
this->mParentNode->mSrcEnd = endPos;
|
||||
}
|
||||
}
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue