mirror of
https://github.com/zeek/zeek.git
synced 2025-10-16 13:38:19 +00:00
Fix required for compiling with clang 3.3.
This commit is contained in:
parent
b8504a5654
commit
09b7ccba23
1 changed files with 1 additions and 1 deletions
|
@ -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());
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue