cmMakefile: Change return type of ReadListFileInternal.
This commit is contained in:
parent
ac10fc0958
commit
fe38bb2c29
|
@ -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;
|
||||
}
|
||||
|
||||
//----------------------------------------------------------------------------
|
||||
|
|
|
@ -918,7 +918,7 @@ private:
|
|||
bool noPolicyScope,
|
||||
bool requireProjectCommand);
|
||||
|
||||
bool ReadListFileInternal(cmListFile const& cacheFile,
|
||||
void ReadListFileInternal(cmListFile const& cacheFile,
|
||||
const char* filenametoread,
|
||||
bool noPolicyScope);
|
||||
|
||||
|
|
Loading…
Reference in New Issue