- Timestamp:
- Mar 21, 2017, 12:21:28 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:
- 168c007
- Parents:
- 142cf5d
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Tuples/TupleExpansion.cc
r142cf5d r94a8123 225 225 if ( ! typeMap.count( tupleSize ) ) { 226 226 // generate struct type to replace tuple type based on the number of components in the tuple 227 StructDecl * decl = new StructDecl( toString( "_tuple _type_", tupleSize) );227 StructDecl * decl = new StructDecl( toString( "_tuple", tupleSize, "_" ) ); 228 228 decl->set_body( true ); 229 229 for ( size_t i = 0; i < tupleSize; ++i ) {
Note: See TracChangeset
for help on using the changeset viewer.