Skip to content

Commit

Permalink
fixed #256: comparison should work.
Browse files Browse the repository at this point in the history
  • Loading branch information
Kray-G committed Mar 30, 2021
1 parent 2c15071 commit 1fe00bc
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/exec/code/ge.inc
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,7 @@
int exc = 0; \
(void)kx_try_le_i(ctx, cur, v1, &exc); /* comparing by opposite operation */ \
KX_EXCEPTION_CHECK("SystemException", exc); \
cur = cur->next; \
} \
} \
/**/
1 change: 1 addition & 0 deletions src/exec/code/le.inc
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,7 @@
int exc = 0; \
(void)kx_try_ge_i(ctx, cur, v1, &exc); /* comparing by opposite operation */ \
KX_EXCEPTION_CHECK("SystemException", exc); \
cur = cur->next; \
} \
} \
/**/
1 change: 1 addition & 0 deletions src/exec/code/lt.inc
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,7 @@
int exc = 0; \
(void)kx_try_gt_i(ctx, cur, v1, &exc); /* comparing by opposite operation */ \
KX_EXCEPTION_CHECK("SystemException", exc); \
cur = cur->next; \
} \
} \
/**/

0 comments on commit 1fe00bc

Please sign in to comment.