mirror of
https://github.com/Ed94/Odin.git
synced 2026-06-13 01:21:38 -07:00
gencpp: fix for <= operator deduction
This commit is contained in:
@@ -22364,7 +22364,7 @@ CodeOperator parse_operator_after_ret_type(
|
||||
case '<':
|
||||
{
|
||||
if ( currtok.Text[1] == '=' )
|
||||
op = Op_LEqual;
|
||||
op = Op_LesserEqual;
|
||||
|
||||
else if ( currtok.Text[1] == '<' )
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user