Changeset 38093ae for libcfa/src/collections
- Timestamp:
- Apr 18, 2024, 8:44:24 PM (23 months ago)
- Branches:
- master, stuck-waitfor-destruct
- Children:
- 19313be5, cf191ac
- Parents:
- 748c751 (diff), 7a780ad (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. - Location:
- libcfa/src/collections
- Files:
-
- 2 edited
-
string.cfa (modified) (2 diffs)
-
string_res.cfa (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/collections/string.cfa
r748c751 r38093ae 10 10 // Created On : Fri Sep 03 11:00:00 2021 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Wed Feb 7 21:17:06202413 // Update Count : 2 5912 // Last Modified On : Mon Apr 15 21:56:28 2024 13 // Update Count : 260 14 14 // 15 15 … … 198 198 cstr[len] = '\0'; // terminate 199 199 _Ostream_Manip(const char *) cf @= { cstr, f.wd, f.pc, f.base, {f.all} }; 200 os | cf | nonl; 201 return os; 200 return os | cf | nonl; 202 201 } // ?|? 203 202 -
libcfa/src/collections/string_res.cfa
r748c751 r38093ae 10 10 // Created On : Fri Sep 03 11:00:00 2021 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Sat Feb 10 17:47:22202413 // Update Count : 8 312 // Last Modified On : Mon Apr 15 21:56:27 2024 13 // Update Count : 85 14 14 // 15 15 … … 200 200 ofstream & ?|?(ofstream & out, const string_res & s) { 201 201 // CFA string is NOT null terminated, so print exactly lnth characters in a minimum width of 0. 202 out | wd( 0, s.Handle.lnth, s.Handle.s ) | nonl; 203 return out; 202 return out | wd( 0, s.Handle.lnth, s.Handle.s ) | nonl; 204 203 } 205 204
Note:
See TracChangeset
for help on using the changeset viewer.