Modify preproc testcase to remove clang warning

Fix to get rid of:
warning: use of logical '&&' with constant operand [-Wconstant-logical-operand]
This commit is contained in:
William S Fulton 2015-02-03 18:41:20 +00:00
commit fd80e8d1e0

View file

@ -225,8 +225,8 @@ This testcase tests operators for defines
#define A7 13 & 14
#define A8 15 | 16
#define A9 17 ^ 18
#define A10 19 && 20
#define A11 21 || 21
#define A10 1 && 0
#define A11 1 || 0
#define A12 ~22
#define A13 !23