Definition at line 139 of file str.cpp.
139 {
141
143 return;
144 }
145 char *newData = (
char *)realloc(
mData, newLength + 1);
146 if (newData) {
151 } else {
152
153 char *newData = (char *)malloc(newLength + 1);
154 if (newData) {
160 } else {
161
162 }
163 }
164}
References mCapacity, mData, and mLength.