Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/AST/Pass.impl.hpp

    r525f7ad r85855b0  
    802802                maybe_accept_top( node, &ForStmt::cond  );
    803803                maybe_accept_top( node, &ForStmt::inc   );
    804                 maybe_accept_top( node, &ForStmt::range_over );
    805804                maybe_accept_as_compound( node, &ForStmt::body  );
    806805        }
     
    13241323        }
    13251324
    1326         VISIT_END( Expr, node );
    1327 }
    1328 
    1329 //--------------------------------------------------------------------------
    1330 // CountExpr
    1331 template< typename core_t >
    1332 const ast::Expr * ast::Pass< core_t >::visit( const ast::CountExpr * node ) {
    1333         VISIT_START( node );
    1334         if ( __visit_children() ) {
    1335                 {
    1336                         guard_symtab guard { *this };
    1337                         maybe_accept( node, &CountExpr::result );
    1338                 }
    1339                 maybe_accept( node, &CountExpr::type );
    1340         }
    13411325        VISIT_END( Expr, node );
    13421326}
Note: See TracChangeset for help on using the changeset viewer.