1
0
Fork 0
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:
Brian Fiete 2021-02-18 06:43:53 -08:00
parent aa89d7d496
commit 02f17a889a

View file

@ -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;
} }
} }
} }