gencpp: fix for <= operator deduction

This commit is contained in:
ed
2024-12-13 11:55:31 -05:00
parent ad813d0335
commit 2c66a62d55
+1 -1
View File
@@ -22364,7 +22364,7 @@ CodeOperator parse_operator_after_ret_type(
case '<': case '<':
{ {
if ( currtok.Text[1] == '=' ) if ( currtok.Text[1] == '=' )
op = Op_LEqual; op = Op_LesserEqual;
else if ( currtok.Text[1] == '<' ) else if ( currtok.Text[1] == '<' )
{ {