summaryrefslogtreecommitdiff
path: root/src/DllPlugInTester
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 /src/DllPlugInTester
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 'src/DllPlugInTester')
-rw-r--r--src/DllPlugInTester/CommandLineParser.h2
1 files changed, 1 insertions, 1 deletions
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<std::string> Arguments;
Arguments m_arguments;
- int m_currentArgument;
+ unsigned int m_currentArgument;
std::string m_option;
};