Skip to content

Wrong function called in __Self &__eq( bool (*func)(T1,T2) ) in Class.hpp #19

@GoogleCodeExporter

Description

@GoogleCodeExporter
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.com on 1 Feb 2013 at 10:48

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions