From e2bc29cf9c2be5e325f24dcf1c92681b05ba96ae Mon Sep 17 00:00:00 2001 From: Brian Fiete Date: Fri, 30 Oct 2020 09:35:48 -0700 Subject: [PATCH] == fix --- IDEHelper/Compiler/BfAst.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/IDEHelper/Compiler/BfAst.h b/IDEHelper/Compiler/BfAst.h index da4d56e6..c62ca408 100644 --- a/IDEHelper/Compiler/BfAst.h +++ b/IDEHelper/Compiler/BfAst.h @@ -781,7 +781,7 @@ public: for (int i = 0; i < mList.mSize; i++) if (mList[i] != rhs.mList[i]) return false; - return false; + return true; } };