From 3bb94764d2094336004eac9c61be946919025346 Mon Sep 17 00:00:00 2001 From: Brian Fiete Date: Thu, 15 Oct 2020 11:27:32 -0700 Subject: [PATCH] Added missing 'internal' string --- IDEHelper/Compiler/BfModule.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/IDEHelper/Compiler/BfModule.cpp b/IDEHelper/Compiler/BfModule.cpp index a11632fb..a01fd4c4 100644 --- a/IDEHelper/Compiler/BfModule.cpp +++ b/IDEHelper/Compiler/BfModule.cpp @@ -21986,8 +21986,8 @@ bool BfModule::SlotVirtualMethod(BfMethodInstance* methodInstance, BfAmbiguityCo { auto prevProtection = methodOverriden->mMethodDef->mProtection; if ((methodDef->mProtection != prevProtection) && (methodDef->mMethodType != BfMethodType_Dtor)) - { - const char* protectionNames[] = {"hidden", "private", "protected", "public"}; + { + const char* protectionNames[] = {"hidden", "private", "internal", "protected", "public"}; BfAstNode* protectionRefNode = NULL; if (auto propertyMethodDeclaration = methodDef->GetPropertyMethodDeclaration()) {