diff options
Diffstat (limited to 'src/stable/string.cpp')
-rw-r--r-- | src/stable/string.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/stable/string.cpp b/src/stable/string.cpp index dac690b..59d8147 100644 --- a/src/stable/string.cpp +++ b/src/stable/string.cpp | |||
@@ -644,6 +644,13 @@ Bu::String &Bu::String::operator=( const char *pData ) | |||
644 | return (*this); | 644 | return (*this); |
645 | } | 645 | } |
646 | 646 | ||
647 | Bu::String &Bu::String::operator=( const Bu::String &pData ) | ||
648 | { | ||
649 | set( pData ); | ||
650 | |||
651 | return (*this); | ||
652 | } | ||
653 | |||
647 | Bu::String Bu::String::operator+( const Bu::String &rRight ) const | 654 | Bu::String Bu::String::operator+( const Bu::String &rRight ) const |
648 | { | 655 | { |
649 | String ret( *this ); | 656 | String ret( *this ); |