comparison sema/TypeCheck.d @ 184:86a2ede00e9a

Oops, compile breaking commit.
author Anders Johnsen <skabet@gmail.com>
date Fri, 25 Jul 2008 11:04:00 +0200
parents 8ea749b7da91
children e799db8d9cb0
comparison
equal deleted inserted replaced
183:8ea749b7da91 184:86a2ede00e9a
80 exp.left = castExp; 80 exp.left = castExp;
81 81
82 } 82 }
83 } 83 }
84 } 84 }
85 if (exp.op >= Operator.LeftShift && 85 if (exp.op >= BinaryExp.Operator.LeftShift &&
86 exp.op <= Operator.UnsignedRightShift) 86 exp.op <= BinaryExp.Operator.UnsignedRightShift)
87 {} // FIXME: When we have const-system we need to check for 87 {} // FIXME: When we have const-system we need to check for
88 // right site being larger then the bitsize of the 88 // right site being larger then the bitsize of the
89 // left 89 // left
90 } 90 }
91 91