Skip to content

Commit

Permalink
delete unused variable
Browse files Browse the repository at this point in the history
  • Loading branch information
mumbleskates authored and miloyip committed May 24, 2022
1 parent 64faab2 commit 232389d
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions test/unittest/simdtest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
}
}
Expand Down

0 comments on commit 232389d

Please sign in to comment.