summaryrefslogtreecommitdiff
path: root/examples/cppunittest/XmlOutputterTest.cpp
diff options
context:
space:
mode:
authorBaptiste Lepilleur <gaiacrtn@free.fr>2003-03-15 09:24:21 +0000
committerBaptiste Lepilleur <gaiacrtn@free.fr>2003-03-15 09:24:21 +0000
commit80c853f8846ff2f48841ebf2f7b202e3b9a95195 (patch)
tree3da11c82c3ebe415d6254ada92bb40857353d1e4 /examples/cppunittest/XmlOutputterTest.cpp
parentc3e47a72d32847f730fc433942fd4e25a4cb3b1c (diff)
downloadcppunit-80c853f8846ff2f48841ebf2f7b202e3b9a95195.tar.gz
Include/cppunit/tools/Algorithm.
include/cppunit/tools/Algorithm.h: * examples/cppunittest/XmlOutputterTest.cpp: * examples/cppunittest/XmlUniformiser.*: * src/cppunit/CompilerOutputter.cpp: * src/cppunit/ProtectorChain.cpp: * src/cppunit/StringTools.cpp: * src/cppunit/TestPath.cpp: * src/cppunit/TypeInfoHelper.cpp: * src/cppunit/XmlElement.cpp: * src/cppunit/XmlOutputter.cpp: * src/DllPlugInTester/CommandLineParser.h: * src/msvc6/testrunner/TestRunnerDlg.cpp: switched to using unsigned index in loop to avoid signed/unsigned warning in vc7.
Diffstat (limited to 'examples/cppunittest/XmlOutputterTest.cpp')
-rw-r--r--examples/cppunittest/XmlOutputterTest.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/cppunittest/XmlOutputterTest.cpp b/examples/cppunittest/XmlOutputterTest.cpp
index 5a64ff9..d2ab3ba 100644
--- a/examples/cppunittest/XmlOutputterTest.cpp
+++ b/examples/cppunittest/XmlOutputterTest.cpp
@@ -33,7 +33,7 @@ void
XmlOutputterTest::tearDown()
{
delete m_result;
- for ( int index =0; index < m_dummyTests.size(); ++index )
+ for ( unsigned int index =0; index < m_dummyTests.size(); ++index )
delete m_dummyTests[index];
m_dummyTests.clear();
}