gravatar
alpar (Alpar Juttner)
alpar@cs.elte.hu
Bypass warnings with gcc 4.3
0 1 0
default
1 file changed with 5 insertions and 5 deletions:
↑ Collapse diff ↑
Show white space 4 line context
... ...
@@ -163,9 +163,9 @@
163 163
    c = (2  == p2 );
164 164

	
165
    c = (2 <= e <= 3);
166
    c = (2 <= p1<= 3);
165
    c = ((2 <= e) <= 3);
166
    c = ((2 <= p1) <= 3);
167 167

	
168
    c = (2 >= e >= 3);
169
    c = (2 >= p1>= 3);
168
    c = ((2 >= e) >= 3);
169
    c = ((2 >= p1) >= 3);
170 170

	
171 171
    e[x[3]]=2;
... ...
@@ -179,5 +179,5 @@
179 179

	
180 180
    lp.addRow(x[1]+x[3]<=x[5]-3);
181
    lp.addRow(-7<=x[1]+x[3]-12<=3);
181
    lp.addRow((-7<=x[1]+x[3]-12)<=3);
182 182
    lp.addRow(x[1]<=x[5]);
183 183

	
0 comments (0 inline)