Ignore:
Timestamp:
Apr 18, 2024, 12:12:03 PM (6 months ago)
Author:
Peter A. Buhr <pabuhr@…>
Branches:
master
Children:
60c5b6d
Parents:
710d0c8c
git-author:
Peter A. Buhr <pabuhr@…> (04/18/24 12:08:05)
git-committer:
Peter A. Buhr <pabuhr@…> (04/18/24 12:12:03)
Message:

formatting

Location:
libcfa/src/collections
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • libcfa/src/collections/string.cfa

    r710d0c8c rfbe3f03  
    1010// Created On       : Fri Sep 03 11:00:00 2021
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Wed Feb  7 21:17:06 2024
    13 // Update Count     : 259
     12// Last Modified On : Mon Apr 15 21:56:28 2024
     13// Update Count     : 260
    1414//
    1515
     
    198198        cstr[len] = '\0';                                                                       // terminate
    199199        _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;
    202201} // ?|?
    203202
  • libcfa/src/collections/string_res.cfa

    r710d0c8c rfbe3f03  
    1010// Created On       : Fri Sep 03 11:00:00 2021
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Sat Feb 10 17:47:22 2024
    13 // Update Count     : 83
     12// Last Modified On : Mon Apr 15 21:56:27 2024
     13// Update Count     : 85
    1414//
    1515
     
    200200ofstream & ?|?(ofstream & out, const string_res & s) {
    201201        // 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;
    204203}
    205204
Note: See TracChangeset for help on using the changeset viewer.