Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/miloyip/rapidjson.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorKent Ross <k@mad.cash>2022-03-14 23:43:15 +0300
committerMilo Yip <miloyip@gmail.com>2022-05-24 05:03:13 +0300
commit232389d4f1012dddec4ef84861face2d2ba85709 (patch)
tree8f8af0440142eb4a2f2c283c13dc7c7a893dc205 /test
parent64faab2e9235ed51f37ef592010b35fc7f7324ec (diff)
delete unused variable
Diffstat (limited to 'test')
-rw-r--r--test/unittest/simdtest.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/test/unittest/simdtest.cpp b/test/unittest/simdtest.cpp
index 649505fa..6fa0d491 100644
--- a/test/unittest/simdtest.cpp
+++ b/test/unittest/simdtest.cpp
@@ -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;
}
}
}