mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-14 22:34:09 +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()
|
~BfDeferredAstNodeSizedArray()
|
||||||
{
|
{
|
||||||
BfSizedArrayInitIndirect(*mSizedArray, *this, mAlloc);
|
BfSizedArrayInitIndirect(*mSizedArray, *this, mAlloc);
|
||||||
if (!mSizedArray->IsEmpty())
|
if (!this->mSizedArray->IsEmpty())
|
||||||
{
|
{
|
||||||
int endPos = mSizedArray->back()->mSrcEnd;
|
int endPos = this->mSizedArray->back()->mSrcEnd;
|
||||||
if (endPos > mParentNode->mSrcEnd)
|
if (endPos > this->mParentNode->mSrcEnd)
|
||||||
mParentNode->mSrcEnd = endPos;
|
this->mParentNode->mSrcEnd = endPos;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue