We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8843976 commit 52ad08fCopy full SHA for 52ad08f
irr/include/irrString.h
@@ -172,13 +172,13 @@ class string
172
clear();
173
return *this;
174
}
175
-
+
176
if constexpr (sizeof(T) != sizeof(B)) {
177
_IRR_DEBUG_BREAK_IF(
178
(uintptr_t)c >= (uintptr_t)(str.data()) &&
179
(uintptr_t)c < (uintptr_t)(str.data() + str.size()));
180
181
182
if ((void *)c == (void *)c_str())
183
184
@@ -191,7 +191,7 @@ class string
191
str[l] = static_cast<T>(c[l]);
192
if (len < str.size())
193
str.resize(len);
194
195
196
197
0 commit comments