From 954de8f89a5538129b5ebf89b8fe06678051f516 Mon Sep 17 00:00:00 2001 From: "arseny.kapoulkine" Date: Sun, 29 Aug 2010 16:28:10 +0000 Subject: tests: Various compilation fixes for BCC and MSVC6 git-svn-id: http://pugixml.googlecode.com/svn/trunk@702 99668b35-9821-0410-8761-19e4c4f06640 --- tests/test_memory.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'tests/test_memory.cpp') diff --git a/tests/test_memory.cpp b/tests/test_memory.cpp index b7a5577..a37b91e 100644 --- a/tests/test_memory.cpp +++ b/tests/test_memory.cpp @@ -164,7 +164,7 @@ TEST(memory_string_allocate_decreasing) for (int i = 0; i < 17; ++i) s += s; - for (int i = 0; i < 17; ++i) + for (int j = 0; j < 17; ++j) { s.resize(s.size() / 2); @@ -178,9 +178,9 @@ TEST(memory_string_allocate_decreasing) CHECK(result.size() == 262143); CHECK(result[result.size() - 1] == 'x'); - for (size_t j = 0; j + 1 < result.size(); ++j) + for (size_t k = 0; k + 1 < result.size(); ++k) { - CHECK(result[j] == (j % 2 ? 'b' : 'a')); + CHECK(result[k] == (k % 2 ? 'b' : 'a')); } } @@ -221,7 +221,7 @@ TEST(memory_string_allocate_decreasing_inplace) for (int i = 0; i < 17; ++i) s += s; - for (int i = 0; i < 17; ++i) + for (int j = 0; j < 17; ++j) { s.resize(s.size() / 2); -- cgit v1.2.3