cmMakefile: Change return type of ReadListFileInternal.

This commit is contained in:
Stephen Kelly
2015-06-21 19:33:54 +02:00
parent ac10fc0958
commit fe38bb2c29
2 changed files with 2 additions and 4 deletions
+1 -3
View File
@@ -601,7 +601,7 @@ bool cmMakefile::ReadListFile(const char* listfile,
return res;
}
bool cmMakefile::ReadListFileInternal(cmListFile const& cacheFile,
void cmMakefile::ReadListFileInternal(cmListFile const& cacheFile,
const char* filenametoread,
bool noPolicyScope)
{
@@ -633,8 +633,6 @@ bool cmMakefile::ReadListFileInternal(cmListFile const& cacheFile,
}
}
}
return true;
}
//----------------------------------------------------------------------------
+1 -1
View File
@@ -918,7 +918,7 @@ private:
bool noPolicyScope,
bool requireProjectCommand);
bool ReadListFileInternal(cmListFile const& cacheFile,
void ReadListFileInternal(cmListFile const& cacheFile,
const char* filenametoread,
bool noPolicyScope);