Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/ResolvExpr/Unify.cc

    r2908f08 r0bd3faf  
    537537                        // assert( open.find( *typeInst ) == open.end() );
    538538                        auto otherInst = dynamic_cast< const ast::TypeInstType * >( type2 );
    539                         if ( otherInst && typeInst->name == otherInst->name ) {
     539                        if (otherInst && typeInst->name == otherInst->name)
    540540                                this->result = otherInst;
    541                         }
     541                        // return otherInst;
    542542                }
    543543
     
    628628                        result = dynamic_cast< const ast::OneType * >( type2 );
    629629                }
     630
     631          private:
     632                template< typename RefType > void handleRefType( RefType *inst, Type *other );
     633                template< typename RefType > void handleGenericRefType( RefType *inst, Type *other );
    630634        };
    631635
Note: See TracChangeset for help on using the changeset viewer.