Ignore:
Timestamp:
Jan 19, 2026, 11:24:34 AM (3 weeks ago)
Author:
Michael Brooks <mlbrooks@…>
Branches:
master
Children:
9d3dc40
Parents:
fb7c9168 (diff), a2940184 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge remote-tracking branch 'refs/remotes/origin/master'

File:
1 edited

Legend:

Unmodified
Added
Removed
  • libcfa/src/fstream.hfa

    rfb7c9168 r5a95560  
    1010// Created On       : Wed May 27 17:56:53 2015
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Mon Apr 14 20:42:01 2025
    13 // Update Count     : 276
     12// Last Modified On : Wed Jan 14 21:11:16 2026
     13// Update Count     : 280
    1414//
    1515
     
    7878void clearerr( ofstream & );
    7979int flush( ofstream & );
    80 void open( ofstream &, const char name[], const char mode[] ); // FIX ME: use default = "w"
    81 void open( ofstream &, const char name[] );
     80void open( ofstream &, const char name[], const char mode[] = "w" );
    8281void close( ofstream & );
    8382
     
    8584
    8685void ?{}( ofstream & );
    87 void ?{}( ofstream &, const char name[], const char mode[] ); // FIX ME: use default = "w"
    88 void ?{}( ofstream &, const char name[] );
     86void ?{}( ofstream &, const char name[], const char mode[] = "w" );
    8987void ^?{}( ofstream & );
    9088
     
    127125bool fail( ifstream & is );
    128126void clearerr( ifstream & );
    129 void open( ifstream & is, const char name[], const char mode[] ); // FIX ME: use default = "r"
    130 void open( ifstream & is, const char name[] );
     127void open( ifstream & is, const char name[], const char mode[] = "r" );
    131128void close( ifstream & is );
    132129ifstream & read( ifstream & is, char data[], size_t size );
    133130
    134131void ?{}( ifstream & is );
    135 void ?{}( ifstream & is, const char name[], const char mode[] ); // FIX ME: use default = "r"
    136 void ?{}( ifstream & is, const char name[] );
     132void ?{}( ifstream & is, const char name[], const char mode[] = "r" );
    137133void ^?{}( ifstream & is );
    138134
Note: See TracChangeset for help on using the changeset viewer.