Changes in libcfa/src/iostream.cfa [04396aa:86a8be5]
- File:
-
- 1 edited
-
libcfa/src/iostream.cfa (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/iostream.cfa
r04396aa r86a8be5 10 10 // Created On : Wed May 27 17:56:53 2015 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Wed Jun 12 15:00:31201913 // Update Count : 8 1912 // Last Modified On : Mon Jun 10 18:06:16 2019 13 // Update Count : 809 14 14 // 15 15 … … 740 740 } // ?|? 741 741 742 istype & ?|?( istype & is, const char * fmt ) {743 fmt( is, fmt, "" );744 return is;745 } // ?|?746 747 istype & ?|?( istype & is, char * s ) {748 fmt( is, "%s", s );749 return is;750 } // ?|?751 752 742 // manipulators 753 743 istype & ?|?( istype & is, istype & (* manip)( istype & ) ) { … … 777 767 // skip xxx 778 768 if ( ! f.s ) { 779 //printf( "skip %s %d\n", f.scanset, f.wd ); 780 if ( f.wd != -1 ) for ( f.wd ) fmt( is, "%*c" ); // no input arguments 781 else fmt( is, f.scanset, "" ); 769 // printf( "skip %s\n", f.scanset ); 770 fmt( is, f.scanset, "" ); // no input arguments 782 771 return is; 783 772 } // if
Note:
See TracChangeset
for help on using the changeset viewer.