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

Alloc allign attributes, lambda captures

This commit is contained in:
Brian Fiete 2019-11-26 13:11:17 -08:00
parent 79ccb33586
commit 12e5b525ad
23 changed files with 540 additions and 219 deletions

View file

@ -811,6 +811,7 @@ public:
BeType* mType;
BeValue* mArraySize;
int mAlign;
bool mNoChkStk;
bool mForceMem;
@ -823,6 +824,7 @@ public:
mType->HashReference(hashCtx);
if (mArraySize != NULL)
mArraySize->HashReference(hashCtx);
hashCtx.Mixin(mAlign);
hashCtx.Mixin(mNoChkStk);
hashCtx.Mixin(mForceMem);
}