| 505 | //----------------------------------------------------------------------------- |
| 506 | |
| 507 | String::String() |
| 508 | { |
| 509 | PROFILE_SCOPE(String_default_constructor); |
| 510 | _string = StringData::Empty(); |
| 511 | } |
| 512 | |
| 513 | String::String(const String &str) |
| 514 | { |
nothing calls this directly
no test coverage detected