ENH: fix warning correctly
This commit is contained in:
parent
cd8dc094f8
commit
3e03bed0ac
|
@ -1568,11 +1568,10 @@ int cmCTest::Run(std::vector<std::string>const& args, std::string* output)
|
|||
if(cmakeAndTest)
|
||||
{
|
||||
cmSystemTools::ResetErrorOccuredFlag();
|
||||
cmListFileCache *lfc = cmListFileCache::GetInstance();
|
||||
lfc->ClearCache();
|
||||
cmListFileCache::ClearCache();
|
||||
int retv = this->RunCMakeAndTest(output);
|
||||
cmSystemTools::ResetErrorOccuredFlag();
|
||||
lfc->ClearCache();
|
||||
cmListFileCache::ClearCache();
|
||||
#ifdef CMAKE_BUILD_WITH_CMAKE
|
||||
cmDynamicLoader::FlushCache();
|
||||
#endif
|
||||
|
|
|
@ -109,8 +109,7 @@ int main(int ac, char** av)
|
|||
#ifdef CMAKE_BUILD_WITH_CMAKE
|
||||
cmDynamicLoader::FlushCache();
|
||||
#endif
|
||||
cmListFileCache* lf = cmListFileCache::GetInstance();
|
||||
lf->ClearCache();
|
||||
cmListFileCache::ClearCache();
|
||||
return ret;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue