mirror of https://github.com/swig/swig
Fix typo in preproc_constants.i testcase
We were testing 0xFF + 2 a second time instead of testing 0xFF - 2.
This commit is contained in:
parent
be81e1825e
commit
acbaa3a757
|
@ -82,7 +82,7 @@
|
|||
#define EXPR_MOD 0xFF % 2
|
||||
|
||||
#define EXPR_PLUS 0xFF + 2
|
||||
#define EXPR_MINUS 0xFF + 2
|
||||
#define EXPR_MINUS 0xFF - 2
|
||||
|
||||
#define EXPR_LSHIFT 0xFF << 2
|
||||
#define EXPR_RSHIFT 0xFF >> 2
|
||||
|
|
Loading…
Reference in New Issue