Changes in libcfa/src/iostream.cfa [c8371b5:b1e614f4]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/iostream.cfa
rc8371b5 rb1e614f4 10 10 // Created On : Wed May 27 17:56:53 2015 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : S un Oct 10 09:28:17202113 // Update Count : 134 512 // Last Modified On : Sat May 15 09:39:21 2021 13 // Update Count : 1342 14 14 // 15 15 … … 398 398 return os; 399 399 } // nlOff 400 } // distribution 401 402 forall( ostype & | ostream( ostype ) ) { 403 ostype & acquire( ostype & os ) { 404 acquire( os ); // call void returning 405 return os; 406 } // acquire 400 407 } // distribution 401 408 … … 822 829 fmt( is, "%c", &temp ); // must pass pointer through varg to fmt 823 830 // do not overwrite parameter with newline unless appropriate 824 if ( temp != '\n' || getANL $( is ) ) { c = temp; break; }831 if ( temp != '\n' || getANL( is ) ) { c = temp; break; } 825 832 if ( eof( is ) ) break; 826 833 } // for … … 1028 1035 return is; 1029 1036 } // nlOff 1037 } // distribution 1038 1039 forall( istype & | istream( istype ) ) { 1040 istype & acquire( istype & is ) { 1041 acquire( is ); // call void returning 1042 return is; 1043 } // acquire 1030 1044 } // distribution 1031 1045
Note:
See TracChangeset
for help on using the changeset viewer.