Changes in / [c1c09285:8f62de7]
- Location:
- src
- Files:
-
- 2 edited
-
SymTab/Validate.cc (modified) (1 diff)
-
SynTree/Statement.cc (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
src/SymTab/Validate.cc
rc1c09285 r8f62de7 483 483 484 484 void ReturnChecker::visit( ReturnStmt * returnStmt ) { 485 // Previously this also checked for the existence of an expr paired with no return values on486 // the function return type. This is incorrect, since you can have an expression attached to487 // a return statement in a void-returning function in C. The expression is treated as if it488 // were cast to void.489 485 if ( returnStmt->get_expr() == NULL && returnVals.size() != 0 ) { 490 486 throw SemanticError( "Non-void function returns no values: " , returnStmt ); 487 } else if ( returnStmt->get_expr() != NULL && returnVals.size() == 0 ) { 488 throw SemanticError( "void function returns values: " , returnStmt ); 491 489 } 492 490 } -
src/SynTree/Statement.cc
rc1c09285 r8f62de7 399 399 } 400 400 401 ImplicitCtorDtorStmt::ImplicitCtorDtorStmt( const ImplicitCtorDtorStmt & other ) : Statement( other ), callStmt( maybeClone( other.callStmt )) {401 ImplicitCtorDtorStmt::ImplicitCtorDtorStmt( const ImplicitCtorDtorStmt & other ) : Statement( other ), callStmt( other.callStmt ) { 402 402 } 403 403 404 404 ImplicitCtorDtorStmt::~ImplicitCtorDtorStmt() { 405 delete callStmt;406 405 } 407 406
Note:
See TracChangeset
for help on using the changeset viewer.