Changeset a5a6a1a8 for libcfa/src
- Timestamp:
- Jul 22, 2021, 10:05:06 PM (3 years ago)
- Branches:
- ADT, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- 866cad3
- Parents:
- 12782a9
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/fstream.cfa
r12782a9 ra5a6a1a8 10 10 // Created On : Wed May 27 17:56:53 2015 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Wed Apr 28 20:37:53202113 // Update Count : 44 512 // Last Modified On : Thu Jul 22 11:34:41 2021 13 // Update Count : 448 14 14 // 15 15 … … 338 338 339 339 340 EHM_VIRTUAL_TABLE(Open_Failure, Open_Failure_main_table); 340 //EHM_VIRTUAL_TABLE(Open_Failure, Open_Failure_main_table); 341 static vtable(Open_Failure) Open_Failure_main_table; 342 343 // exception I/O constructors 341 344 void ?{}( Open_Failure & this, ofstream & ostream ) { 342 345 this.virtual_table = &Open_Failure_main_table; 343 346 this.ostream = &ostream; 344 347 this.tag = 1; 345 } 348 } // ?{} 349 346 350 void ?{}( Open_Failure & this, ifstream & istream ) { 347 351 this.virtual_table = &Open_Failure_main_table; 348 352 this.istream = &istream; 349 353 this.tag = 0; 350 } 354 } // ?{} 355 351 356 void throwOpen_Failure( ofstream & ostream ) { 352 357 Open_Failure exc = { ostream }; 353 358 } 359 354 360 void throwOpen_Failure( ifstream & istream ) { 355 361 Open_Failure exc = { istream };
Note: See TracChangeset
for help on using the changeset viewer.