diff options
Diffstat (limited to 'src/fbasicstring.h')
-rw-r--r-- | src/fbasicstring.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/fbasicstring.h b/src/fbasicstring.h index 838fbc2..535df55 100644 --- a/src/fbasicstring.h +++ b/src/fbasicstring.h | |||
@@ -796,7 +796,7 @@ namespace Bu | |||
796 | append( &cData, 1 ); | 796 | append( &cData, 1 ); |
797 | } | 797 | } |
798 | } | 798 | } |
799 | 799 | ||
800 | /** | 800 | /** |
801 | * Append another FString to this one. | 801 | * Append another FString to this one. |
802 | *@param sData (MyType &) The FString to append. | 802 | *@param sData (MyType &) The FString to append. |
@@ -1280,6 +1280,13 @@ namespace Bu | |||
1280 | return (*this); | 1280 | return (*this); |
1281 | } | 1281 | } |
1282 | 1282 | ||
1283 | MyType &operator+=( const MyType::const_iterator &i ) | ||
1284 | { | ||
1285 | append( i, i+1 ); | ||
1286 | |||
1287 | return (*this); | ||
1288 | } | ||
1289 | |||
1283 | /** | 1290 | /** |
1284 | * Plus equals operator for FString. | 1291 | * Plus equals operator for FString. |
1285 | *@param cData (const chr) The character to append to your FString. | 1292 | *@param cData (const chr) The character to append to your FString. |