Changeset 2f84692 for src/SymTab
- Timestamp:
- Jul 17, 2018, 5:19:18 PM (7 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:
- 16a7d84, 679e644
- Parents:
- 8a3ecb9 (diff), 56fba87 (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/SymTab/Validate.cc
r8a3ecb9 r2f84692 85 85 void previsit( AlignofExpr * ); 86 86 void previsit( UntypedOffsetofExpr * ); 87 void previsit( CompoundLiteralExpr * ); 87 88 void handleType( Type * ); 88 89 }; … … 348 349 void HoistTypeDecls::previsit( UntypedOffsetofExpr * expr ) { 349 350 handleType( expr->type ); 351 } 352 353 void HoistTypeDecls::previsit( CompoundLiteralExpr * expr ) { 354 handleType( expr->result ); 350 355 } 351 356
Note: See TracChangeset
for help on using the changeset viewer.