- File:
-
- 1 edited
-
src/ControlStruct/ExceptTranslate.cc (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/ControlStruct/ExceptTranslate.cc
r6a625de re15853c 617 617 return create_terminate_rethrow( throwStmt ); 618 618 } else { 619 a bort("Invalid throw in %s at %i\n",619 assertf(false, "Invalid throw in %s at %i\n", 620 620 throwStmt->location.filename.c_str(), 621 621 throwStmt->location.first_line); 622 return nullptr; 622 623 } 623 624 } else { … … 627 628 return create_resume_rethrow( throwStmt ); 628 629 } else { 629 a bort("Invalid throwResume in %s at %i\n",630 assertf(false, "Invalid throwResume in %s at %i\n", 630 631 throwStmt->location.filename.c_str(), 631 632 throwStmt->location.first_line); 633 return nullptr; 632 634 } 633 635 }
Note:
See TracChangeset
for help on using the changeset viewer.