Fix required for compiling with clang 3.3.

This commit is contained in:
Robin Sommer 2013-09-23 11:48:38 -07:00
parent b8504a5654
commit 09b7ccba23

View file

@ -2403,7 +2403,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());