ENH: fix warning correctly

This commit is contained in:
Bill Hoffman 2004-09-10 14:40:28 -04:00
parent cd8dc094f8
commit 3e03bed0ac
2 changed files with 3 additions and 5 deletions

View File

@ -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

View File

@ -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;
}