mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-06 07:38:48 +00:00
gencpp: fix for <= operator deduction
This commit is contained in:
@@ -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] == '<' )
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user