Changes in src/ResolvExpr/Resolver.cc [ca9d65e:59c8dff]
- File:
-
- 1 edited
-
src/ResolvExpr/Resolver.cc (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/ResolvExpr/Resolver.cc
rca9d65e r59c8dff 420 420 const ast::ConstructorInit * previsit( const ast::ConstructorInit * ); 421 421 422 const ast::EnumPosExpr * previsit( const ast::EnumPosExpr * ); 423 422 424 void resolveWithExprs(std::vector<ast::ptr<ast::Expr>> & exprs, std::list<ast::ptr<ast::Stmt>> & stmtsToAdd); 423 425 … … 1239 1241 } 1240 1242 1243 const ast::EnumPosExpr * Resolver::previsit( const ast::EnumPosExpr * enumPos ) { 1244 visitor->maybe_accept( enumPos, &ast::EnumPosExpr::expr ); 1245 return enumPos; 1246 } 1247 1241 1248 // suppress error on autogen functions and mark invalid autogen as deleted. 1242 1249 bool Resolver::on_error(ast::ptr<ast::Decl> & decl) {
Note:
See TracChangeset
for help on using the changeset viewer.