mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-10 04:22:20 +02:00
Fixed typealias circular reference issue
This commit is contained in:
parent
b1af9de159
commit
6232de0aaa
1 changed files with 6 additions and 0 deletions
|
@ -1230,6 +1230,12 @@ bool BfModule::PopulateType(BfType* resolvedTypeRef, BfPopulateType populateType
|
||||||
if (typeInstance == NULL)
|
if (typeInstance == NULL)
|
||||||
return true;
|
return true;
|
||||||
|
|
||||||
|
if (typeInstance->mModule == NULL)
|
||||||
|
{
|
||||||
|
BF_ASSERT(typeInstance->mTypeFailed);
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
auto result = typeInstance->mModule->DoPopulateType(typeInstance, populateType);
|
auto result = typeInstance->mModule->DoPopulateType(typeInstance, populateType);
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue