Changes in src/Parser/StatementNode.cc [046e04a:ca78437]
- File:
-
- 1 edited
-
src/Parser/StatementNode.cc (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
src/Parser/StatementNode.cc
r046e04a rca78437 175 175 176 176 Statement *build_try( StatementNode *try_stmt, StatementNode *catch_stmt, StatementNode *finally_stmt ) { 177 std::list< CatchStmt * > branches;178 buildMoveList< CatchStmt, StatementNode >( catch_stmt, branches );177 std::list< Statement * > branches; 178 buildMoveList< Statement, StatementNode >( catch_stmt, branches ); 179 179 CompoundStmt *tryBlock = safe_dynamic_cast< CompoundStmt * >(maybeMoveBuild< Statement >(try_stmt)); 180 180 FinallyStmt *finallyBlock = dynamic_cast< FinallyStmt * >(maybeMoveBuild< Statement >(finally_stmt) );
Note:
See TracChangeset
for help on using the changeset viewer.