1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-09 03:52:19 +02:00

Fixed error/warning bool interference in AddErrorContext

This commit is contained in:
Brian Fiete 2021-12-30 11:27:17 -05:00
parent efbdc33622
commit be6e7edf02
3 changed files with 20 additions and 7 deletions

View file

@ -839,6 +839,7 @@ public:
bool mHasBeenDeclared:1;
bool mHasBeenProcessed:1;
bool mHasFailed:1;
bool mHasWarning:1;
bool mFailedConstraints:1;
bool mMangleWithIdx:1;
bool mHadGenericDelegateParams:1;
@ -880,6 +881,7 @@ public:
mHasBeenDeclared = false;
mHasBeenProcessed = false;
mHasFailed = false;
mHasWarning = false;
mFailedConstraints = false;
mMangleWithIdx = false;
mHadGenericDelegateParams = false;