- File:
-
- 1 edited
-
src/ControlStruct/ExceptTranslate.cc (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/ControlStruct/ExceptTranslate.cc
r6a625de r7862059 9 9 // Author : Andrew Beach 10 10 // Created On : Wed Jun 14 16:49:00 2017 11 // Last Modified By : Peter A. Buhr12 // Last Modified On : Wed Feb 13 18:15:29 201913 // Update Count : 1111 // Last Modified By : Andrew Beach 12 // Last Modified On : Thr Aug 17 17:19:00 2017 13 // Update Count : 9 14 14 // 15 15 … … 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.