Definition at line 269 of file str.cpp.
269 {
271
273 return;
274 }
275 char *newData = (
char *)realloc(
mData, newLength + 1);
276 if (newData) {
281 } else {
282
283 char *newData = (char *)malloc(newLength + 1);
284 if (newData) {
290 } else {
291
292 }
293 }
294}
References mCapacity, mData, and mLength.