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:
parent
29127cf014
commit
fd80e8d1e0
1 changed files with 2 additions and 2 deletions
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue