Currently it looks like this:
template<class T1, class T2>
__Self &__eq( bool (*func)(T1,T2) )
{
_class->setObject__newindex( FuncCall::create(func) ); return *this;
}
Should instead be:
template<class T1, class T2>
__Self &__eq( bool (*func)(T1,T2) )
{
_class->set__eq( SLB_FuncCall::create(func) ); return *this;
}
Original issue reported on code.google.com by
johan.p....@hotmail.comon 1 Feb 2013 at 10:48