diff options
author | Brad King <brad.king@kitware.com> | 2002-11-20 14:06:38 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2002-11-20 14:06:38 (GMT) |
commit | 6435f608b975ce24a5f424c55d208b2e460c2c3b (patch) | |
tree | a8e77feab43d323dfce1a56305518f541f17de69 /Source | |
parent | f87d7039e24635b92e3793b8f19df390e084be73 (diff) | |
download | CMake-6435f608b975ce24a5f424c55d208b2e460c2c3b.zip CMake-6435f608b975ce24a5f424c55d208b2e460c2c3b.tar.gz CMake-6435f608b975ce24a5f424c55d208b2e460c2c3b.tar.bz2 |
ERR: Fixed signed/unsigned warning.
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmGetFilenameComponentCommand.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmGetFilenameComponentCommand.cxx b/Source/cmGetFilenameComponentCommand.cxx index f277627..c030d18 100644 --- a/Source/cmGetFilenameComponentCommand.cxx +++ b/Source/cmGetFilenameComponentCommand.cxx @@ -51,7 +51,7 @@ bool cmGetFilenameComponentCommand::InitialPass(std::vector<std::string> const& } else if (args[2] == "PROGRAM") { - for(int i=2; i < args.size(); ++i) + for(unsigned int i=2; i < args.size(); ++i) { if(args[i] == "PROGRAM_ARGS") { |