From 4765bd9738c0412aaaed846b2b63b7fb93b52560 Mon Sep 17 00:00:00 2001 From: Brian Fiete Date: Sun, 20 Sep 2020 05:38:10 -0700 Subject: [PATCH] this-> fix --- IDEHelper/Compiler/BfAst.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/IDEHelper/Compiler/BfAst.h b/IDEHelper/Compiler/BfAst.h index 3e3da0fe..02c460db 100644 --- a/IDEHelper/Compiler/BfAst.h +++ b/IDEHelper/Compiler/BfAst.h @@ -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; } } };