From 086c7952a4529b8051009673ac241acd55eb946a Mon Sep 17 00:00:00 2001 From: Brian Fiete Date: Thu, 17 Mar 2022 11:26:48 -0700 Subject: [PATCH] Fixed compile cancelling issue --- IDEHelper/Compiler/BfCompiler.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/IDEHelper/Compiler/BfCompiler.cpp b/IDEHelper/Compiler/BfCompiler.cpp index 52eff695..91fc1471 100644 --- a/IDEHelper/Compiler/BfCompiler.cpp +++ b/IDEHelper/Compiler/BfCompiler.cpp @@ -5639,7 +5639,7 @@ void BfCompiler::PopulateReified() } // Only check virtual stuff if we have been instantiated - if (typeInst->HasBeenInstantiated()) + if ((typeInst->HasBeenInstantiated()) && (!mCanceling)) { // If we have any virtual methods overrides that are unreified but the declaring virtual method is reified then we also need to reify for (auto&& vEntry : typeInst->mVirtualMethodTable)