1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-09 03:52:19 +02:00

Reflection fixes

This commit is contained in:
Brian Fiete 2020-07-06 12:26:06 -07:00
parent 6cd66a2182
commit c0b8d151de
2 changed files with 6 additions and 2 deletions

View file

@ -5756,6 +5756,7 @@ BfType* BfModule::ResolveGenericType(BfType* unspecializedType, BfTypeVector* ty
return NULL;
if (elementType->IsVar())
return elementType;
elementType = FixIntUnknown(elementType);
return CreateRefType(elementType, refType->mRefKind);
}