mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-09 20:12:21 +02:00
Fixed fully qualified generic lookup
This commit is contained in:
parent
8aa58b3804
commit
fa0f559537
1 changed files with 1 additions and 1 deletions
|
@ -10906,7 +10906,7 @@ BfType* BfModule::ResolveTypeRef(BfTypeReference* typeRef, BfPopulateType popula
|
||||||
{
|
{
|
||||||
if (auto genericTypeParent = BfNodeDynCast<BfGenericInstanceTypeRef>(mParentNodeEntry->mNode))
|
if (auto genericTypeParent = BfNodeDynCast<BfGenericInstanceTypeRef>(mParentNodeEntry->mNode))
|
||||||
{
|
{
|
||||||
wantNumGenericArgs += (int)genericTypeParent->mGenericArguments.size();
|
wantNumGenericArgs = (int)genericTypeParent->mGenericArguments.size();
|
||||||
genericTypeRef = genericTypeParent;
|
genericTypeRef = genericTypeParent;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue