Changeset 5a95560 for libcfa/src/fstream.hfa
- Timestamp:
- Jan 19, 2026, 11:24:34 AM (3 weeks ago)
- 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. - File:
-
- 1 edited
-
libcfa/src/fstream.hfa (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/fstream.hfa
rfb7c9168 r5a95560 10 10 // Created On : Wed May 27 17:56:53 2015 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Mon Apr 14 20:42:01 202513 // Update Count : 2 7612 // Last Modified On : Wed Jan 14 21:11:16 2026 13 // Update Count : 280 14 14 // 15 15 … … 78 78 void clearerr( ofstream & ); 79 79 int flush( ofstream & ); 80 void open( ofstream &, const char name[], const char mode[] ); // FIX ME: use default = "w" 81 void open( ofstream &, const char name[] ); 80 void open( ofstream &, const char name[], const char mode[] = "w" ); 82 81 void close( ofstream & ); 83 82 … … 85 84 86 85 void ?{}( ofstream & ); 87 void ?{}( ofstream &, const char name[], const char mode[] ); // FIX ME: use default = "w" 88 void ?{}( ofstream &, const char name[] ); 86 void ?{}( ofstream &, const char name[], const char mode[] = "w" ); 89 87 void ^?{}( ofstream & ); 90 88 … … 127 125 bool fail( ifstream & is ); 128 126 void 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[] ); 127 void open( ifstream & is, const char name[], const char mode[] = "r" ); 131 128 void close( ifstream & is ); 132 129 ifstream & read( ifstream & is, char data[], size_t size ); 133 130 134 131 void ?{}( ifstream & is ); 135 void ?{}( ifstream & is, const char name[], const char mode[] ); // FIX ME: use default = "r" 136 void ?{}( ifstream & is, const char name[] ); 132 void ?{}( ifstream & is, const char name[], const char mode[] = "r" ); 137 133 void ^?{}( ifstream & is ); 138 134
Note:
See TracChangeset
for help on using the changeset viewer.