From eec2cb5e6cf6f538eef72fee25ac9394afd7ec28 Mon Sep 17 00:00:00 2001 From: Brian Fiete Date: Sat, 23 Oct 2021 08:53:12 -0700 Subject: [PATCH] Fixed unspecialized type reification issue --- IDEHelper/Compiler/BfModule.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/IDEHelper/Compiler/BfModule.cpp b/IDEHelper/Compiler/BfModule.cpp index fdf2c394..14cac746 100644 --- a/IDEHelper/Compiler/BfModule.cpp +++ b/IDEHelper/Compiler/BfModule.cpp @@ -12888,7 +12888,7 @@ BfModuleMethodInstance BfModule::GetMethodInstance(BfTypeInstance* typeInst, BfM { if ((!mIsComptimeModule) && (mIsReified) && (!instModule->mIsReified)) { - if (!typeInst->IsUnspecializedTypeVariation()) + if (!typeInst->IsUnspecializedType()) { if (!instModule->mReifyQueued) {