mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-08 19:48:20 +02:00
Fixed alias type hashing issue
This commit is contained in:
parent
aa89d7d496
commit
02f17a889a
1 changed files with 3 additions and 1 deletions
|
@ -3138,7 +3138,9 @@ int BfResolvedTypeSet::DoHash(BfTypeReference* typeRef, LookupContext* ctx, BfHa
|
||||||
ctx->mFailed = true;
|
ctx->mFailed = true;
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
return Hash(underlyingType, ctx, flags, hashSeed);
|
int hashVal = Hash(underlyingType, ctx, flags, hashSeed);
|
||||||
|
hashSeed = 0;
|
||||||
|
return hashVal;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue