Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kubo39 committed May 4, 2024
1 parent 73e2f94 commit 137d073
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/execution/value.d
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ struct I64
///
int opCmp(I64 rhs) const
{
return i < rhs.i;
return (i > rhs.i) - (i < rhs.i);
}
}

Expand Down

0 comments on commit 137d073

Please sign in to comment.