Ignore:
File:
1 edited

Legend:

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

    rfbe3f03 r714e206  
    1010// Created On       : Fri Sep 03 11:00:00 2021
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Mon Apr 15 21:56:27 2024
    13 // Update Count     : 85
     12// Last Modified On : Sat Feb 10 17:47:22 2024
     13// Update Count     : 83
    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         return out | wd( 0, s.Handle.lnth, s.Handle.s ) | nonl;
     202        out | wd( 0, s.Handle.lnth, s.Handle.s ) | nonl;
     203        return out;
    203204}
    204205
Note: See TracChangeset for help on using the changeset viewer.