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;
}