Merge branch 'master' into topic/jsiwek/coverity

This commit is contained in:
Jon Siwek 2013-09-23 14:55:46 -05:00
commit 9c2a3124e0
21 changed files with 423 additions and 3428 deletions

View file

@ -2442,7 +2442,7 @@ RefExpr::RefExpr(Expr* arg_op) : UnaryExpr(EXPR_REF, arg_op)
if ( IsError() )
return;
if ( ! is_assignable(op->Type()) )
if ( ! ::is_assignable(op->Type()) )
ExprError("illegal assignment target");
else
SetType(op->Type()->Ref());