- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/ControlStruct/ExceptTranslate.cpp
r83fd57d r539a8c8 26 26 namespace { 27 27 28 29 30 31 block->push_back(new ast::DeclStmt(block->location, item));32 28 typedef std::list<ast::CatchClause*> CatchList; 29 30 void appendDeclStmt( ast::CompoundStmt * block, ast::DeclWithType * item ) { 31 block->push_back( new ast::DeclStmt( block->location, item ) ); 32 } 33 33 34 34 class TranslateThrowsCore final : public ast::WithGuards {
Note: See TracChangeset
for help on using the changeset viewer.