Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • libcfa/src/fstream.cfa

    ra5a6a1a8 r00e9be9  
    1010// Created On       : Wed May 27 17:56:53 2015
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Thu Jul 22 11:34:41 2021
    13 // Update Count     : 448
     12// Last Modified On : Wed Apr 28 20:37:53 2021
     13// Update Count     : 445
    1414//
    1515
     
    338338
    339339
    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
     340EHM_VIRTUAL_TABLE(Open_Failure, Open_Failure_main_table);
    344341void ?{}( Open_Failure & this, ofstream & ostream ) {
    345342        this.virtual_table = &Open_Failure_main_table;
    346343        this.ostream = &ostream;
    347344        this.tag = 1;
    348 } // ?{}
    349 
     345}
    350346void ?{}( Open_Failure & this, ifstream & istream ) {
    351347        this.virtual_table = &Open_Failure_main_table;
    352348        this.istream = &istream;
    353349        this.tag = 0;
    354 } // ?{}
    355 
     350}
    356351void throwOpen_Failure( ofstream & ostream ) {
    357352        Open_Failure exc = { ostream };
    358353}
    359 
    360354void throwOpen_Failure( ifstream & istream ) {
    361355        Open_Failure exc = { istream };
Note: See TracChangeset for help on using the changeset viewer.