| 357 | _String() {} |
| 358 | _String(_String &o) { buffer = o.buffer; } |
| 359 | ~_String() {} |
| 360 | _String &operator=(const _String&o) { buffer = o.buffer; return *this; } |
| 361 | _String &operator=(const std::string&o) { buffer = o; return *this; } |
| 362 | _String &operator+=(const _String&o) { buffer += o.buffer; return *this; } |
no outgoing calls
no test coverage detected