From bb4f0df6539e97fb94e362743975d34ed514bc9d Mon Sep 17 00:00:00 2001 From: Brian Fiete Date: Mon, 16 Nov 2020 07:51:51 -0800 Subject: [PATCH] Fixed override fix --- IDEHelper/Compiler/BfModule.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/IDEHelper/Compiler/BfModule.cpp b/IDEHelper/Compiler/BfModule.cpp index 205322b0..2bdf75fd 100644 --- a/IDEHelper/Compiler/BfModule.cpp +++ b/IDEHelper/Compiler/BfModule.cpp @@ -20260,6 +20260,8 @@ void BfModule::SetupIRFunction(BfMethodInstance* methodInstance, StringImpl& man if (checkMethod == methodDef) continue; + if (!checkMethod->mIsExtern) + continue; auto checkMethodInstance = mCurTypeInstance->mMethodInstanceGroups[checkMethod->mIdx].mDefault; if (checkMethodInstance == NULL) continue;