1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-08 11:38:21 +02:00

Fixed error handling in const append calc

This commit is contained in:
Brian Fiete 2022-06-27 11:28:38 -07:00
parent 0d5b209a14
commit 9d079dfcb6
2 changed files with 10 additions and 0 deletions

View file

@ -921,12 +921,14 @@ public:
BfMethodInstance* mMethodInstance;
BfConstResolveState* mPrevConstResolveState;
bool mInCalcAppend;
bool mFailed;
BfConstResolveState()
{
mMethodInstance = NULL;
mPrevConstResolveState = NULL;
mInCalcAppend = false;
mFailed = false;
}
};