Execute IWYU and format.

This commit is contained in:
ArthurSonzogni
2021-06-21 23:08:39 +02:00
committed by Arthur Sonzogni
parent 91c5954fe2
commit 20a05e99ca
8 changed files with 51 additions and 31 deletions

View File

@@ -118,7 +118,7 @@ TerminalInputParser::Output TerminalInputParser::ParseUTF8() {
// Find the first zero in the first byte.
int first_zero = 8;
for(int i = 0; i<8; ++i) {
for (int i = 0; i < 8; ++i) {
mask |= selector;
if (head & selector) {
selector >>= 1;