fixed warning

This commit is contained in:
Ken Martin 2002-07-02 08:24:36 -04:00
parent a43a65bf34
commit 2a7e4539e6
2 changed files with 2 additions and 2 deletions

View File

@ -1374,7 +1374,7 @@ void cmMakefile::EnableLanguage(const char* lang)
void cmMakefile::ExpandSourceListArguments( void cmMakefile::ExpandSourceListArguments(
std::vector<std::string> const& arguments, std::vector<std::string> const& arguments,
std::vector<std::string>& newargs, int start) std::vector<std::string>& newargs, unsigned int start)
{ {
// first figure out if we need to handle version 1.2 style source lists // first figure out if we need to handle version 1.2 style source lists
int oldVersion = 1; int oldVersion = 1;

View File

@ -384,7 +384,7 @@ public:
*/ */
void ExpandSourceListArguments(std::vector<std::string> const& argsIn, void ExpandSourceListArguments(std::vector<std::string> const& argsIn,
std::vector<std::string>& argsOut, std::vector<std::string>& argsOut,
int startArgumentIndex); unsigned int startArgumentIndex);
/** Get a cmSourceFile pointer for a given source name, if the name is /** Get a cmSourceFile pointer for a given source name, if the name is
* not found, then a null pointer is returned. * not found, then a null pointer is returned.