Changeset f7a4f89 for src/ResolvExpr/ExplodedActual.cc
- Timestamp:
- Nov 24, 2017, 9:02:40 PM (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:
- cf966b5
- Parents:
- 88ef2af (diff), 3de176d (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/ExplodedActual.cc
r88ef2af rf7a4f89 20 20 namespace ResolvExpr { 21 21 ExplodedActual::ExplodedActual( const Alternative& actual, const SymTab::Indexer& indexer ) 22 : env(actual.env), cost(actual.cost), alts() {23 Tuples::explode( actual, indexer, back_inserter( alts ));22 : env(actual.env), cost(actual.cost), exprs() { 23 Tuples::explode( actual, indexer, *this ); 24 24 } 25 25 }
Note:
See TracChangeset
for help on using the changeset viewer.