You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// if there's not enough memory for the concatenated value, the string
207
-
// will be left unchanged (but this isn't signalled in any way)
207
+
// will be left unchanged (but this isn't signaled in any way)
208
208
template <typename T>
209
209
String &operator +=(const T &rhs) {
210
210
concat(rhs);
@@ -343,7 +343,7 @@ class String {
343
343
char *wbuffer() { returnconst_cast<char *>(buffer()); } // Writable version of buffer
344
344
345
345
// concatenation is done via non-member functions
346
-
// make sure we still have access to internal methods, since we optimize based on capacity of both sides and want to manipulate internal buffers directly
346
+
// make sure we still have access to internal methods, since we optimize based on the capacity of both sides and want to manipulate internal buffers directly
0 commit comments