Skip to content

Commit 52ad08f

Browse files
committedOct 4, 2024·
fix whitespace for real
1 parent 8843976 commit 52ad08f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

‎irr/include/irrString.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -172,13 +172,13 @@ class string
172172
clear();
173173
return *this;
174174
}
175-
175+
176176
if constexpr (sizeof(T) != sizeof(B)) {
177177
_IRR_DEBUG_BREAK_IF(
178178
(uintptr_t)c >= (uintptr_t)(str.data()) &&
179179
(uintptr_t)c < (uintptr_t)(str.data() + str.size()));
180180
}
181-
181+
182182
if ((void *)c == (void *)c_str())
183183
return *this;
184184

@@ -191,7 +191,7 @@ class string
191191
str[l] = static_cast<T>(c[l]);
192192
if (len < str.size())
193193
str.resize(len);
194-
194+
195195
return *this;
196196
}
197197

0 commit comments

Comments
 (0)
Please sign in to comment.