libcsdbg  1.28
C++ exception (and generic) stack trace debug library
string & csdbg::string::operator+= ( const string rval)
inlinevirtual

Compound addition-assignment operator (append)

Parameters
[in]rvalthe appended string
Returns
*this
Exceptions
std::bad_alloc

Definition at line 332 of file string.cpp.

References append().

333 {
334  return append(rval);
335 }
virtual string & append(const string &)
Append a string.
Definition: string.cpp:404

+ Here is the call graph for this function: