FIX: get rid of warnings
This commit is contained in:
parent
701f0d6413
commit
7e2a78b499
|
@ -30,7 +30,6 @@ bool cmAbstractFilesCommand::InitialPass(std::vector<std::string> const& argsIn)
|
||||||
bool ret = true;
|
bool ret = true;
|
||||||
std::string m = "could not find source file(s):\n";
|
std::string m = "could not find source file(s):\n";
|
||||||
|
|
||||||
cmMakefile::SourceMap &Classes = m_Makefile->GetSources();
|
|
||||||
for(std::vector<std::string>::const_iterator j = args.begin();
|
for(std::vector<std::string>::const_iterator j = args.begin();
|
||||||
j != args.end(); ++j)
|
j != args.end(); ++j)
|
||||||
{
|
{
|
||||||
|
|
|
@ -49,7 +49,7 @@ bool cmSetCommand::InitialPass(std::vector<std::string> const& args)
|
||||||
if(args[1] != "CACHE" && args[2] != "CACHE")
|
if(args[1] != "CACHE" && args[2] != "CACHE")
|
||||||
{
|
{
|
||||||
value = args[1];
|
value = args[1];
|
||||||
for(int i =2; i < args.size(); ++i)
|
for(unsigned int i =2; i < args.size(); ++i)
|
||||||
{
|
{
|
||||||
value += ";";
|
value += ";";
|
||||||
value += args[i];
|
value += args[i];
|
||||||
|
|
Loading…
Reference in New Issue