diff options
author | Arseny Kapoulkine <arseny.kapoulkine@gmail.com> | 2015-05-22 08:43:36 -0700 |
---|---|---|
committer | Arseny Kapoulkine <arseny.kapoulkine@gmail.com> | 2015-05-22 08:43:36 -0700 |
commit | fc1dcab79d43822f05c3dfe4dc391987c6bbc2d2 (patch) | |
tree | d04d0d118d0739931a8abbd6855f86dd783638bc | |
parent | 677e95010e8a09a74985b818bd2a7d0b1051c667 (diff) |
tests: Fix MSVC6 compilation
-rw-r--r-- | tests/test_parse.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_parse.cpp b/tests/test_parse.cpp index 393e14c..2c3f125 100644 --- a/tests/test_parse.cpp +++ b/tests/test_parse.cpp @@ -956,7 +956,7 @@ TEST(parse_out_of_memory_allocator_state_sync) test_runner::_memory_fail_threshold = 0; - for (unsigned int i = 0; i < count; ++i) + for (unsigned int j = 0; j < count; ++j) CHECK(doc.append_child(STR("n"))); } |