Fix for x86_64 build fail
[platform/upstream/connectedhomeip.git] / third_party / nlfaultinjection / repo / third_party / cstyle / repo / tests / space-around-unary-operators.cmp
1 space-around-unary-operators.cpp:9:7: warning: space around unary operator '++'
2     a ++;
3 ------^
4 space-around-unary-operators.cpp:10:5: warning: space around unary operator '++'
5     ++ a;
6 ----^
7 space-around-unary-operators.cpp:17:9: warning: space around unary operator '++'
8     (a) ++;
9 --------^
10 space-around-unary-operators.cpp:18:5: warning: space around unary operator '++'
11     ++ (a);
12 ----^
13 space-around-unary-operators.cpp:23:30: warning: space around unary operator '++'
14     for (int a = 0; a < n; a ++)
15 -----------------------------^
16 space-around-unary-operators.cpp:28:28: warning: space around unary operator '++'
17     for (int a = 0; a < n; ++ a)
18 ---------------------------^
19 space-around-unary-operators.cpp:36:32: warning: space around unary operator '++'
20     for (int a = 0; a < n; (a) ++)
21 -------------------------------^
22 space-around-unary-operators.cpp:41:28: warning: space around unary operator '++'
23     for (int a = 0; a < n; ++ (a))
24 ---------------------------^
25 space-around-unary-operators.cpp:51:7: warning: space around unary operator '--'
26     a --;
27 ------^
28 space-around-unary-operators.cpp:53:5: warning: space around unary operator '--'
29     -- a;
30 ----^
31 space-around-unary-operators.cpp:60:9: warning: space around unary operator '--'
32     (a) --;
33 --------^
34 space-around-unary-operators.cpp:62:5: warning: space around unary operator '--'
35     -- (a);
36 ----^
37 space-around-unary-operators.cpp:67:30: warning: space around unary operator '--'
38     for (int a = 0; a < n; a --)
39 -----------------------------^
40 space-around-unary-operators.cpp:72:28: warning: space around unary operator '--'
41     for (int a = 0; a < n; -- a)
42 ---------------------------^
43 space-around-unary-operators.cpp:80:32: warning: space around unary operator '--'
44     for (int a = 0; a < n; (a) --)
45 -------------------------------^
46 space-around-unary-operators.cpp:85:28: warning: space around unary operator '--'
47     for (int a = 0; a < n; -- (a))
48 ---------------------------^
49 space-around-unary-operators.cpp:96:9: warning: space around unary operator '~'
50     b = ~ a;
51 --------^
52 space-around-unary-operators.cpp:98:12: warning: space around unary operator '~'
53     return ~ b;
54 -----------^
55 space-around-unary-operators.cpp:106:9: warning: space around unary operator '~'
56     b = ~ (a);
57 --------^
58 space-around-unary-operators.cpp:108:12: warning: space around unary operator '~'
59     return ~ (b);
60 -----------^
61 space-around-unary-operators.cpp:117:9: warning: space around unary operator '!'
62     b = ! a;
63 --------^
64 space-around-unary-operators.cpp:119:12: warning: space around unary operator '!'
65     return ! b;
66 -----------^
67 space-around-unary-operators.cpp:127:9: warning: space around unary operator '!'
68     b = ! (a);
69 --------^
70 space-around-unary-operators.cpp:129:12: warning: space around unary operator '!'
71     return ! (b);
72 -----------^