From 80c853f8846ff2f48841ebf2f7b202e3b9a95195 Mon Sep 17 00:00:00 2001 From: Baptiste Lepilleur Date: Sat, 15 Mar 2003 09:24:21 +0000 Subject: 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. --- src/DllPlugInTester/CommandLineParser.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/DllPlugInTester/CommandLineParser.h') diff --git a/src/DllPlugInTester/CommandLineParser.h b/src/DllPlugInTester/CommandLineParser.h index 99c46da..2fc80eb 100644 --- a/src/DllPlugInTester/CommandLineParser.h +++ b/src/DllPlugInTester/CommandLineParser.h @@ -118,7 +118,7 @@ protected: typedef CppUnitDeque Arguments; Arguments m_arguments; - int m_currentArgument; + unsigned int m_currentArgument; std::string m_option; }; -- cgit v1.2.1