1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-10 12:32:20 +02:00

Fixed VerifyTypeLookups from outer types

This commit is contained in:
Brian Fiete 2021-02-28 07:14:08 -08:00
parent 4feda1da59
commit c4b7cc58a1
2 changed files with 4 additions and 1 deletions

View file

@ -2553,6 +2553,9 @@ void BfModule::DoPopulateType_TypeAlias(BfTypeInstance* typeAlias)
void BfModule::DoPopulateType(BfType* resolvedTypeRef, BfPopulateType populateType)
{
if (populateType == BfPopulateType_Identity)
return;
auto typeInstance = resolvedTypeRef->ToTypeInstance();
auto typeDef = typeInstance->mTypeDef;