summaryrefslogtreecommitdiffstats
path: root/Source/cmakemain.cxx
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2004-09-09 16:58:55 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2004-09-09 16:58:55 (GMT)
commit766c48ae19277a352caece6e97a762b0c6b412e5 (patch)
tree346f11085d06bd72973d196a83e88367eb9e42f6 /Source/cmakemain.cxx
parent3708ed4ec8d327faf0ef2b0fe35d7ed53d99afce (diff)
downloadCMake-766c48ae19277a352caece6e97a762b0c6b412e5.zip
CMake-766c48ae19277a352caece6e97a762b0c6b412e5.tar.gz
CMake-766c48ae19277a352caece6e97a762b0c6b412e5.tar.bz2
WAR: remove a warning on i64
Diffstat (limited to 'Source/cmakemain.cxx')
-rw-r--r--Source/cmakemain.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmakemain.cxx b/Source/cmakemain.cxx
index 663a3b5..1c893ac 100644
--- a/Source/cmakemain.cxx
+++ b/Source/cmakemain.cxx
@@ -109,7 +109,8 @@ int main(int ac, char** av)
#ifdef CMAKE_BUILD_WITH_CMAKE
cmDynamicLoader::FlushCache();
#endif
- cmListFileCache::GetInstance()->ClearCache();
+ cmListFileCache* lf = cmListFileCache::GetInstance();
+ lf->ClearCache();
return ret;
}