Definition at line 195 of file str.cpp.
195 {
197
199 return;
200 }
201 char *newData = (
char *)realloc(
mData, newLength + 1);
202 if (newData) {
207 } else {
208
209 char *newData = (char *)malloc(newLength + 1);
210 if (newData) {
216 } else {
217
218 }
219 }
220}
References mCapacity, mData, and mLength.