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

Added ReflectAttribute.ReflectImplementer

This commit is contained in:
Brian Fiete 2020-09-26 08:26:42 -07:00
parent 52ccdfe46a
commit 0e10eba8f5
3 changed files with 37 additions and 3 deletions

View file

@ -1741,8 +1741,10 @@ int BfModule::GenerateTypeOptions(BfCustomAttributes* customAttributes, BfTypeIn
{
StringT<128> ifaceName = TypeToString(iface.mInterfaceType);
if (BfCheckWildcard(checkFilter, ifaceName))
{
matched = true;
break;
break;
}
}
checkTypeInst = checkTypeInst->mBaseType;
}