Changeset d76c588 for src/AST/Convert.cpp
- Timestamp:
- May 30, 2019, 4:10:24 PM (6 years ago)
- Branches:
- ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- 8d70648
- Parents:
- eba615c
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/AST/Convert.cpp
reba615c rd76c588 63 63 std::list< T * > acceptL( const U & container ) { 64 64 std::list< T * > ret; 65 for ( auto ptr : container ) {65 for ( auto ptr : container ) { 66 66 ret.emplace_back( accept1( ptr ) ); 67 67 } … … 1432 1432 }; 1433 1433 cache.emplace( old, decl ); 1434 decl->withExprs = GET_ACCEPT_V(withExprs, Expr); 1434 1435 decl->scopeLevel = old->scopeLevel; 1435 1436 decl->mangleName = old->mangleName;
Note: See TracChangeset
for help on using the changeset viewer.