Changeset 4e7f0f1 for src/ResolvExpr
- Timestamp:
- Sep 7, 2016, 11:40:52 AM (8 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
- Children:
- 3b58d91
- Parents:
- e76acbe (diff), 02cea2d (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/ResolvExpr/AlternativeFinder.cc
re76acbe r4e7f0f1 366 366 std::cerr << std::endl << " to "; 367 367 assert->second.formalType->print( std::cerr, 8 ); 368 369 368 ) 369 Cost newCost = conversionCost( assert->second.actualType, assert->second.formalType, indexer, alt.env ); 370 370 PRINT( 371 371 std::cerr << std::endl << "cost of conversion is " << newCost << std::endl; 372 373 374 375 372 ) 373 if ( newCost == Cost::infinity ) { 374 return newCost; 375 } 376 376 convCost += newCost; 377 377
Note: See TracChangeset
for help on using the changeset viewer.