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

Fixed fixit for attributes namespaces

This commit is contained in:
Brian Fiete 2020-07-17 05:13:12 -07:00
parent 54d107e334
commit 0f11c36da8

View file

@ -7722,7 +7722,7 @@ BfType* BfModule::ResolveTypeRef(BfTypeReference* typeRef, BfPopulateType popula
if ((resolveFlags & BfResolveTypeRefFlag_IgnoreLookupError) == 0)
{
TypeRefNotFound(typeRef);
TypeRefNotFound(typeRef, ((resolveFlags & Beefy::BfResolveTypeRefFlag_Attribute) != 0) ? "Attribute" : NULL);
return ResolveTypeResult(typeRef, NULL, populateType, resolveFlags);
}