| 983 | } |
| 984 | |
| 985 | void String::SetString(const char *cstr, size_t length) |
| 986 | { |
| 987 | if (cstr && length > 0u) |
| 988 | { |
| 989 | SetStringImpl(cstr, std::min(length, strlen(cstr))); |
| 990 | } |
| 991 | else |
| 992 | { |
| 993 | Empty(); |
| 994 | } |
| 995 | } |
| 996 | |
| 997 | void String::SetStringImpl(const char *cstr, size_t length) |
| 998 | { |