On Fri, Sep 20, 2013 at 22:11 -0700, you wrote:
> /home/ports/security/bro/work/bro-2.1/src/Expr.cc:2392:9: error:
> reference to 'is_assignable' is ambiguous
clang will be happy if you change it to this:
+ if ( ! ::is_assignable(op->Type()) )
I've actually fixed that in a branch
There's a FreeBSD ports bug report that says clang 3.3 doesn't like bro 2.1:
http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/182127
/home/ports/security/bro/work/bro-2.1/src/Expr.cc:2392:9: error:
reference to 'is_assignable' is ambiguous
if ( ! is_assignable(op->Type()) )
^