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:
parent
efbdc33622
commit
be6e7edf02
3 changed files with 20 additions and 7 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue