Changeset 3d7e53b for src/Parser/TypeData.cc
- Timestamp:
- Jul 10, 2018, 11:09:19 AM (6 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, no_list, persistent-indexer, pthread-emulation, qualifiedEnum
- Children:
- 5cacf74
- Parents:
- aeec6b7
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Parser/TypeData.cc
raeec6b7 r3d7e53b 63 63 enumeration.constants = nullptr; 64 64 enumeration.body = false; 65 enumeration.anon = false; 65 66 break; 66 67 case Aggregate: … … 74 75 aggregate.tagged = false; 75 76 aggregate.parent = nullptr; 77 aggregate.anon = false; 76 78 break; 77 79 case AggregateInst: … … 216 218 newtype->aggregate.fields = maybeClone( aggregate.fields ); 217 219 newtype->aggregate.body = aggregate.body; 220 newtype->aggregate.anon = aggregate.anon; 218 221 newtype->aggregate.tagged = aggregate.tagged; 219 222 newtype->aggregate.parent = aggregate.parent ? new string( *aggregate.parent ) : nullptr; … … 228 231 newtype->enumeration.constants = maybeClone( enumeration.constants ); 229 232 newtype->enumeration.body = enumeration.body; 233 newtype->enumeration.anon = enumeration.anon; 230 234 break; 231 235 case Symbolic:
Note: See TracChangeset
for help on using the changeset viewer.