Changeset ae0c1c3 for libcfa/src/collections/string.cfa
- Timestamp:
- Apr 25, 2025, 7:08:53 PM (9 months ago)
- Branches:
- master
- Children:
- 7d02d35, ecfa58be
- Parents:
- 65bd3c2
- File:
-
- 1 edited
-
libcfa/src/collections/string.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 }
Note:
See TracChangeset
for help on using the changeset viewer.