Merge pull request #100634 from YYF233333/iwyu2

Remove unused headers in servers
This commit is contained in:
Rémi Verschelde 2024-12-20 23:57:09 +01:00
commit fd5548a8b7
No known key found for this signature in database
GPG key ID: C3336907360768E1
109 changed files with 32 additions and 199 deletions

View file

@ -184,7 +184,7 @@
NSInteger skip = 0;
if (substringToDelete != nil) {
for (NSInteger i = 0; i < MIN([substringToDelete length], [substringToEnter length]); i++) {
for (NSUInteger i = 0; i < MIN([substringToDelete length], [substringToEnter length]); i++) {
if ([substringToDelete characterAtIndex:i] == [substringToEnter characterAtIndex:i]) {
skip++;
} else {