Changeset 3db78b89
- Timestamp:
- Jan 24, 2024, 12:11:48 PM (11 months ago)
- Branches:
- master
- Children:
- 64c4b4d
- Parents:
- 8a33777
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/iostream.cfa
r8a33777 r3db78b89 1076 1076 } // if 1077 1077 // FIX ME: CFA strings need to be modified to NOT change the argument for this case, then this can be removed. 1078 if ( rwd > 0 && args == 0 ) f.s[0]= '\0'; // read failed => no pattern match => set string to null1078 if ( ! f.flags.ignore && rwd > 0 && args == 0 ) f.s[0]= '\0'; // read failed => no pattern match => set string to null 1079 1079 } else { 1080 1080 if ( f.flags.delimiter ) { // getline … … 1114 1114 } // if 1115 1115 } // if 1116 if ( rwd > 0 && args == 0 ) f.s[0]= '\0'; // read failed => no pattern match => set string to null1116 if ( ! f.flags.ignore && rwd > 0 && args == 0 ) f.s[0]= '\0'; // read failed => no pattern match => set string to null 1117 1117 } // if 1118 1118 if ( args == 1 && eof( is ) ) { // data but scan ended at EOF -
tests/io/.expect/manipulatorsInput.arm64.txt
r8a33777 r3db78b89 32 32 3 abcxxx 33 33 4 aaaaaaaa 34 5 34 5 aaaaaaaa 35 35 6 aabbccbb 36 36 7 dddwww 37 8 38 9 37 8 dddwww 38 9 dddwww 39 39 10 aaaaaaaa 40 40 11 wwwwwwww 41 12 42 13 41 12 wwwwwwww 42 13 wwwwwwww 43 43 14 44 44 15 -
tests/io/.expect/manipulatorsInput.x64.txt
r8a33777 r3db78b89 32 32 3 abcxxx 33 33 4 aaaaaaaa 34 5 34 5 aaaaaaaa 35 35 6 aabbccbb 36 36 7 dddwww 37 8 38 9 37 8 dddwww 38 9 dddwww 39 39 10 aaaaaaaa 40 40 11 wwwwwwww 41 12 42 13 41 12 wwwwwwww 42 13 wwwwwwww 43 43 14 44 44 15 -
tests/io/.expect/manipulatorsInput.x86.txt
r8a33777 r3db78b89 32 32 3 abcxxx 33 33 4 aaaaaaaa 34 5 34 5 aaaaaaaa 35 35 6 aabbccbb 36 36 7 dddwww 37 8 38 9 37 8 dddwww 38 9 dddwww 39 39 10 aaaaaaaa 40 40 11 wwwwwwww 41 12 42 13 41 12 wwwwwwww 42 13 wwwwwwww 43 43 14 44 44 15
Note: See TracChangeset
for help on using the changeset viewer.