cmCacheManager: Remove use of intermediate overload.

This commit is contained in:
Stephen Kelly 2015-04-04 20:24:11 +02:00
parent 510562e3e7
commit 23bb5d225b
1 changed files with 2 additions and 1 deletions

View File

@ -84,7 +84,8 @@ bool cmCacheManager::LoadCache(cmMakefile* mf)
bool cmCacheManager::LoadCache(const std::string& path)
{
return this->LoadCache(path,true);
std::set<std::string> emptySet;
return this->LoadCache(path, true, emptySet, emptySet);
}
bool cmCacheManager::LoadCache(const std::string& path,