diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2004-09-10 18:40:28 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2004-09-10 18:40:28 (GMT) |
commit | 3e03bed0acf45313c7eee351ab5047e926a5ee44 (patch) | |
tree | edfff82e7ab9deb656cf421d9d9ac66fd5ad4fb1 /Source/cmakemain.cxx | |
parent | cd8dc094f8a28afcde2959dfe8e7d205a93e4d6c (diff) | |
download | CMake-3e03bed0acf45313c7eee351ab5047e926a5ee44.zip CMake-3e03bed0acf45313c7eee351ab5047e926a5ee44.tar.gz CMake-3e03bed0acf45313c7eee351ab5047e926a5ee44.tar.bz2 |
ENH: fix warning correctly
Diffstat (limited to 'Source/cmakemain.cxx')
-rw-r--r-- | Source/cmakemain.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Source/cmakemain.cxx b/Source/cmakemain.cxx index 1c893ac..113d299 100644 --- a/Source/cmakemain.cxx +++ b/Source/cmakemain.cxx @@ -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; } |