Changeset ae0c1c3 for libcfa/src/collections
- Timestamp:
- Apr 25, 2025, 7:08:53 PM (8 months ago)
- Branches:
- master
- Children:
- 7d02d35, ecfa58be
- Parents:
- 65bd3c2
- Location:
- libcfa/src/collections
- Files:
-
- 2 edited
-
string.cfa (modified) (2 diffs)
-
string_res.cfa (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/collections/string.cfa
r65bd3c2 rae0c1c3 216 216 } 217 217 218 void ?|?( ostype & out, string s ) {218 void ?|?( ostype & out, string s ) with ( basic_ostream_table ) { 219 219 (ostype &)(out | (*s.inner)); ends( out ); 220 220 } … … 229 229 } // ?|? 230 230 231 void ?|?( ostype & os, _Ostream_Manip(string) f ) {231 void ?|?( ostype & os, _Ostream_Manip(string) f ) with ( basic_ostream_table ) { 232 232 (ostype &)(os | f); ends( os ); 233 233 } -
libcfa/src/collections/string_res.cfa
r65bd3c2 rae0c1c3 201 201 forall( ostype & | basic_ostream( ostype ) ) 202 202 void ?|?( ostype & out, const string_res & s ) { 203 (ostype &)(out | s); ends( out ); 203 (ostype &)(out | s); 204 basic_ostream_table.ends( out ); 204 205 } 205 206 … … 249 250 250 251 forall( istype & | basic_istream( istype ) ) 251 istype & ?|?( istype & is, _Istream_Rquote f ) with( f.rstr ) {252 istype & ?|?( istype & is, _Istream_Rquote f ) with( basic_istream_table, f.rstr ) { 252 253 if ( eof( is ) ) throwResume ExceptionInst( end_of_file ); 253 254 int args;
Note:
See TracChangeset
for help on using the changeset viewer.