- Timestamp:
- Sep 5, 2023, 2:57:01 PM (17 months ago)
- Branches:
- master
- Children:
- 3c7e3c4, aae9c17
- Parents:
- acafba4
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/collections/string.cfa
racafba4 rf54e6ec 149 149 cont = true; 150 150 } finally { 151 f.s = cstr;// ok to initialize string151 if ( ! cf.flags.ignore ) f.s = cstr; // ok to initialize string 152 152 } // try 153 153 for ( ; cont; ) { // overflow read ? … … 158 158 cont = true; // continue not allowed 159 159 } finally { 160 f.s += cstr;// build string chunk at a time160 if ( ! cf.flags.ignore ) f.s += cstr; // build string chunk at a time 161 161 } // try 162 162 } // for
Note: See TracChangeset
for help on using the changeset viewer.