Changeset c4f8c4bf for libcfa/src
- Timestamp:
- Apr 11, 2025, 1:23:19 PM (5 months ago)
- Branches:
- master
- Children:
- 602ac05, cefaa2df
- Parents:
- dab6e39
- Location:
- libcfa/src/collections
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/collections/string.cfa
rdab6e39 rc4f8c4bf 298 298 } 299 299 300 void ?+=?( string & s, const string &s2 ) {300 PBOOST void ?+=?( string & s, string s2 ) { 301 301 (*s.inner) += (*s2.inner); 302 302 } -
libcfa/src/collections/string.hfa
rdab6e39 rc4f8c4bf 160 160 // Concatenation 161 161 void ?+=?( string & s, char c ); 162 void ?+=?( string & s, const string & s2);162 PBOOST void ?+=?( string & s, string ); 163 163 void append( string & s, const string & s2, size_t maxlen ); 164 164 void ?+=?( string & s, const char * s2 );
Note:
See TracChangeset
for help on using the changeset viewer.