summaryrefslogtreecommitdiffstats
path: root/Source/cmAbstractFilesCommand.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2001-02-23 15:40:13 (GMT)
committerBrad King <brad.king@kitware.com>2001-02-23 15:40:13 (GMT)
commitd31ce244136205bc006967090ddd4d6fdde5b3cb (patch)
tree7c3c96c3a906ed4ba33d7ecc0ab616db8a0e0373 /Source/cmAbstractFilesCommand.cxx
parent8f0ac1e9bd4aaf012c10e0044465c580b6f56144 (diff)
downloadCMake-d31ce244136205bc006967090ddd4d6fdde5b3cb.zip
CMake-d31ce244136205bc006967090ddd4d6fdde5b3cb.tar.gz
CMake-d31ce244136205bc006967090ddd4d6fdde5b3cb.tar.bz2
ERR: Fixed warnings (int->unsigned int and a few others).
Diffstat (limited to 'Source/cmAbstractFilesCommand.cxx')
-rw-r--r--Source/cmAbstractFilesCommand.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmAbstractFilesCommand.cxx b/Source/cmAbstractFilesCommand.cxx
index 2e8ed2f..7950bef 100644
--- a/Source/cmAbstractFilesCommand.cxx
+++ b/Source/cmAbstractFilesCommand.cxx
@@ -27,7 +27,7 @@ bool cmAbstractFilesCommand::Invoke(std::vector<std::string>& args)
j != args.end(); ++j)
{
std::vector<cmClassFile>& Classes = m_Makefile->GetClasses();
- for(int i = 0; i < Classes.size(); i++)
+ for(unsigned int i = 0; i < Classes.size(); i++)
{
if(Classes[i].m_ClassName == (*j))
{