Changeset f54e6ec
- Timestamp:
- Sep 5, 2023, 2:57:01 PM (15 months ago)
- Branches:
- master
- Children:
- 3c7e3c4, aae9c17
- Parents:
- acafba4
- Files:
-
- 3 added
- 2 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 -
tests/io/manipulatorsInput.cfa
racafba4 rf54e6ec 51 51 sin | ignore( excl( "abc", wdi( sizeof(s), 8, s ) ) ); sout | "13" | s; 52 52 } 53 /* Keep harmonized with collections/string-istream-manip */ 53 54 { 54 55 char c;
Note: See TracChangeset
for help on using the changeset viewer.