Changes in src/ResolvExpr/Unify.cc [943bfad:9d8124f]
- File:
-
- 1 edited
-
src/ResolvExpr/Unify.cc (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
src/ResolvExpr/Unify.cc
r943bfad r9d8124f 943 943 // check that the other type is compatible and named the same 944 944 auto otherInst = dynamic_cast< const XInstType * >( other ); 945 this->result = otherInst && inst->name == otherInst->name;945 if (otherInst && inst->name == otherInst->name) this->result = otherInst; 946 946 return otherInst; 947 947 }
Note:
See TracChangeset
for help on using the changeset viewer.