mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-09 12:02:21 +02:00
Remove 'base' call for inner override impl
This commit is contained in:
parent
8ee47190cd
commit
84594e66ff
1 changed files with 1 additions and 1 deletions
|
@ -2153,7 +2153,7 @@ bool BfAutoComplete::GetMethodInfo(BfMethodInstance* methodInst, StringImpl* sho
|
||||||
StringT<128> methodName;
|
StringT<128> methodName;
|
||||||
StringT<256> impString;
|
StringT<256> impString;
|
||||||
|
|
||||||
bool isAbstract = methodDef->mIsAbstract || isInterface;// (methodDef->mIsAbstract) && (!isInterface);
|
bool isAbstract = (methodDef->mIsAbstract) || (isInterface) || (!methodDef->mIsVirtual);
|
||||||
|
|
||||||
if (isAbstract)
|
if (isAbstract)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue