Ignore:
Timestamp:
Feb 12, 2024, 1:07:26 PM (5 months ago)
Author:
Peter A. Buhr <pabuhr@…>
Branches:
master
Children:
c185ca9
Parents:
6b228cae
Message:

move exception macro to general location, update more code to use macros

File:
1 edited

Legend:

Unmodified
Added
Removed
  • libcfa/src/fstream.cfa

    r6b228cae r77bc259  
    1010// Created On       : Wed May 27 17:56:53 2015
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Thu Feb  1 18:32:15 2024
    13 // Update Count     : 575
     12// Last Modified On : Sun Feb 11 20:55:45 2024
     13// Update Count     : 580
    1414//
    1515
     
    321321
    322322
    323 static vtable(open_failure) open_failure_vt;
    324 
    325323// exception I/O constructors
    326324void ?{}( open_failure & ex, ofstream & ostream ) with( ex ) {
     
    337335
    338336
    339 static vtable(close_failure) close_failure_vt;
    340 
    341337// exception I/O constructors
    342338void ?{}( close_failure & ex, ofstream & ostream ) with( ex ) {
     
    353349
    354350
    355 static vtable(write_failure) write_failure_vt;
    356 
    357351// exception I/O constructors
    358352void ?{}( write_failure & ex, ofstream & ostream ) with( ex ) {
     
    369363
    370364
    371 static vtable(read_failure) read_failure_vt;
    372 
    373365// exception I/O constructors
    374366void ?{}( read_failure & ex, ofstream & ostream ) with( ex ) {
Note: See TracChangeset for help on using the changeset viewer.