Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/SynTree/Expression.h

    rcdb990a r9a705dc8  
    4141        ParamEntry( UniqueId decl, Type * actualType, Type * formalType, Expression* expr ): decl( decl ), actualType( actualType ), formalType( formalType ), expr( expr ), inferParams( new InferredParams ) {}
    4242        ParamEntry( const ParamEntry & other );
    43         ParamEntry( ParamEntry && other );
    4443        ~ParamEntry();
    4544        ParamEntry & operator=( const ParamEntry & other );
    46         ParamEntry & operator=( ParamEntry && other );
    4745
    4846        UniqueId decl;
     
    7573
    7674        InferredParams & get_inferParams() { return inferParams; }
    77 
    78         // move other's inferParams to this
    79         void spliceInferParams( Expression * other );
    8075
    8176        virtual Expression * clone() const override = 0;
Note: See TracChangeset for help on using the changeset viewer.