delete unused variable

This commit is contained in:
Kent Ross 2022-03-14 13:43:15 -07:00 committed by Milo Yip
parent 64faab2e92
commit 232389d4f1
1 changed files with 0 additions and 2 deletions

View File

@ -87,14 +87,12 @@ TEST(SIMD, SIMD_SUFFIX(SkipWhitespace_EncodedMemoryStream)) {
MemoryStream ms(buffer, 1024);
EncodedInputStream<UTF8<>, MemoryStream> s(ms);
size_t i = 0;
for (;;) {
SkipWhitespace(s);
if (s.Peek() == '\0')
break;
//EXPECT_EQ(i, s.Tell());
EXPECT_EQ('X', s.Take());
i += step;
}
}
}