Fix constant expressions containing <= or >=
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@11687 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
parent
719cfe68bf
commit
2726424a7f
6 changed files with 13 additions and 6 deletions
|
|
@ -68,9 +68,9 @@
|
|||
/* FIXME
|
||||
#define EXPR_LT 0xFF < 255
|
||||
#define EXPR_GT 0xFF > 255
|
||||
#define EXPR_LTE 0xFF <= 255
|
||||
#define EXPR_LGE 0xFF >= 255
|
||||
*/
|
||||
#define EXPR_LTE 0xFF <= 255
|
||||
#define EXPR_GTE 0xFF >= 255
|
||||
#define EXPR_INEQUALITY 0xFF != 255
|
||||
#define EXPR_EQUALITY 0xFF == 255
|
||||
#define EXPR_AND 0xFF & 1
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue