Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • libcfa/src/fstream.cfa

    recfd758 re474cf09  
    321321
    322322
    323 EHM_VIRTUAL_TABLE(Open_Failure, Open_Failure_main_table);
    324323void ?{}( Open_Failure & this, ofstream & ostream ) {
    325         this.virtual_table = &Open_Failure_main_table;
     324        VTABLE_INIT(this, Open_Failure);
    326325        this.ostream = &ostream;
    327326        this.tag = 1;
    328327}
    329328void ?{}( Open_Failure & this, ifstream & istream ) {
    330         this.virtual_table = &Open_Failure_main_table;
     329        VTABLE_INIT(this, Open_Failure);
    331330        this.istream = &istream;
    332331        this.tag = 0;
    333332}
     333const char * Open_Failure_msg(Open_Failure * this) {
     334        return "Open_Failure";
     335}
     336VTABLE_INSTANCE(Open_Failure)(Open_Failure_msg);
    334337void throwOpen_Failure( ofstream & ostream ) {
    335338        Open_Failure exc = { ostream };
Note: See TracChangeset for help on using the changeset viewer.