Changeset c4f8c4bf for libcfa/src


Ignore:
Timestamp:
Apr 11, 2025, 1:23:19 PM (5 months ago)
Author:
Michael Brooks <mlbrooks@…>
Branches:
master
Children:
602ac05, cefaa2df
Parents:
dab6e39
Message:

Fix string-operator handling on +=

Location:
libcfa/src/collections
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • libcfa/src/collections/string.cfa

    rdab6e39 rc4f8c4bf  
    298298}
    299299
    300 void ?+=?( string & s, const string & s2 ) {
     300PBOOST void ?+=?( string & s, string s2 ) {
    301301        (*s.inner) += (*s2.inner);
    302302}
  • libcfa/src/collections/string.hfa

    rdab6e39 rc4f8c4bf  
    160160// Concatenation
    161161void ?+=?( string & s, char c );
    162 void ?+=?( string & s, const string & s2 );
     162PBOOST void ?+=?( string & s, string );
    163163void append( string & s, const string & s2, size_t maxlen );
    164164void ?+=?( string & s, const char * s2 );
Note: See TracChangeset for help on using the changeset viewer.