1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-08 19:48:20 +02:00

Generic resolution fix

This commit is contained in:
Brian Fiete 2025-01-02 13:33:45 -08:00
parent 5d55409841
commit 7f9a272e23
3 changed files with 58 additions and 41 deletions

View file

@ -3472,6 +3472,9 @@ void BfModule::DoPopulateType_TypeAlias(BfTypeAliasType* typeAlias)
void BfModule::DoPopulateType_InitSearches(BfTypeInstance* typeInstance)
{
if (typeInstance->IsBoxed())
return;
auto typeDef = typeInstance->mTypeDef;
auto _AddStaticSearch = [&](BfTypeDef* typeDef)