From 84594e66ffc89de806785762b2162ff173d044b7 Mon Sep 17 00:00:00 2001 From: Brian Fiete Date: Mon, 26 Oct 2020 10:46:35 -0700 Subject: [PATCH] Remove 'base' call for inner override impl --- IDEHelper/Compiler/BfAutoComplete.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/IDEHelper/Compiler/BfAutoComplete.cpp b/IDEHelper/Compiler/BfAutoComplete.cpp index 280649e1..6db12d4b 100644 --- a/IDEHelper/Compiler/BfAutoComplete.cpp +++ b/IDEHelper/Compiler/BfAutoComplete.cpp @@ -2153,7 +2153,7 @@ bool BfAutoComplete::GetMethodInfo(BfMethodInstance* methodInst, StringImpl* sho StringT<128> methodName; StringT<256> impString; - bool isAbstract = methodDef->mIsAbstract || isInterface;// (methodDef->mIsAbstract) && (!isInterface); + bool isAbstract = (methodDef->mIsAbstract) || (isInterface) || (!methodDef->mIsVirtual); if (isAbstract) {