mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-10 12:32:20 +02:00
Fixed enum comparison to int when there's an int conversion operator
This commit is contained in:
parent
70c2131c18
commit
dfbb09a8ac
4 changed files with 41 additions and 22 deletions
|
@ -395,9 +395,10 @@ enum BfBinOpFlags
|
|||
BfBinOpFlag_None = 0,
|
||||
BfBinOpFlag_NoClassify = 1,
|
||||
BfBinOpFlag_ForceLeftType = 2,
|
||||
BfBinOpFlag_IgnoreOperatorWithWrongResult = 4,
|
||||
BfBinOpFlag_IsConstraintCheck = 8,
|
||||
BfBinOpFlag_DeferRight = 0x10
|
||||
BfBinOpFlag_ForceRightType = 4,
|
||||
BfBinOpFlag_IgnoreOperatorWithWrongResult = 8,
|
||||
BfBinOpFlag_IsConstraintCheck = 0x10,
|
||||
BfBinOpFlag_DeferRight = 0x20
|
||||
};
|
||||
|
||||
class BfExprEvaluator : public BfStructuralVisitor
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue