comparison dmd/XorExp.d @ 109:ceda59b4d255

expression.c changes, now only ddoc should be left
author Trass3r
date Tue, 31 Aug 2010 22:08:52 +0200
parents 2e2a5c3f943a
children e28b18c23469
comparison
equal deleted inserted replaced
108:6da99741178e 109:ceda59b4d255
45 e = this; 45 e = this;
46 } 46 }
47 else 47 else
48 { 48 {
49 typeCombine(sc); 49 typeCombine(sc);
50 if (e1.op != TOKslice && e2.op != TOKslice) 50 if (!e1.isArrayOperand())
51 {
52 e1.checkIntegral(); 51 e1.checkIntegral();
52 if (!e2.isArrayOperand())
53 e2.checkIntegral(); 53 e2.checkIntegral();
54 }
55 } 54 }
56 } 55 }
57 return this; 56 return this;
58 } 57 }
59 58