Changes in / [4160c072:ebf0820]
- File:
-
- 1 edited
-
src/ResolvExpr/AlternativeFinder.cc (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/ResolvExpr/AlternativeFinder.cc
r4160c072 rebf0820 595 595 596 596 ArgPack() 597 : parent(0), expr(), cost(Cost::zero), env(), need(), have(), openVars(), nextArg(0), 598 597 : parent(0), expr(), cost(Cost::zero), env(), need(), have(), openVars(), nextArg(0), 599 598 tupleStart(0), nextExpl(0), explAlt(0) {} 600 599 … … 706 705 Type* argType; 707 706 708 if ( nTuples > 0 ) { 709 // first iteration, push empty tuple expression 707 if ( nTuples > 0 || ! results[i].expr ) { 708 // first iteration or no expression to clone, 709 // push empty tuple expression 710 710 newResult.parent = i; 711 711 std::list<Expression*> emptyList;
Note:
See TracChangeset
for help on using the changeset viewer.