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

mEmitSourceMap hash fix

This commit is contained in:
Brian Fiete 2022-04-17 07:35:53 -07:00
parent 9687e7dccc
commit ea637c5684

View file

@ -4661,7 +4661,9 @@ void BfModule::DoPopulateType(BfType* resolvedTypeRef, BfPopulateType populateTy
for (auto& kv : ceInfo->mEmitSourceMap)
{
hashCtx.Mixin(kv.mKey);
hashCtx.Mixin(kv.mValue);
hashCtx.Mixin(kv.mValue.mKind);
hashCtx.Mixin(kv.mValue.mSrcStart);
hashCtx.Mixin(kv.mValue.mSrcEnd);
}
hashCtx.Mixin(ceInfo->mOnCompileMap.mCount);
for (auto& kv : ceInfo->mOnCompileMap)