From 2a7e4539e67e1610b9f9c8899069f7f6239e441a Mon Sep 17 00:00:00 2001 From: Ken Martin Date: Tue, 2 Jul 2002 08:24:36 -0400 Subject: [PATCH] fixed warning --- Source/cmMakefile.cxx | 2 +- Source/cmMakefile.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx index ca92e41364..e4ed437450 100644 --- a/Source/cmMakefile.cxx +++ b/Source/cmMakefile.cxx @@ -1374,7 +1374,7 @@ void cmMakefile::EnableLanguage(const char* lang) void cmMakefile::ExpandSourceListArguments( std::vector const& arguments, - std::vector& newargs, int start) + std::vector& newargs, unsigned int start) { // first figure out if we need to handle version 1.2 style source lists int oldVersion = 1; diff --git a/Source/cmMakefile.h b/Source/cmMakefile.h index a4c561c844..c1985f0f59 100644 --- a/Source/cmMakefile.h +++ b/Source/cmMakefile.h @@ -384,7 +384,7 @@ public: */ void ExpandSourceListArguments(std::vector const& argsIn, std::vector& argsOut, - int startArgumentIndex); + unsigned int startArgumentIndex); /** Get a cmSourceFile pointer for a given source name, if the name is * not found, then a null pointer is returned.