diff options
author | Ken Martin <ken.martin@kitware.com> | 2002-09-12 18:37:27 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2002-09-12 18:37:27 (GMT) |
commit | c6c579f35a79feb7a11414207cbeb75b9298d59f (patch) | |
tree | 97678a26aded4dad6a5d8739a94f7b7b27aa9ddf /Source/cmake.cxx | |
parent | e88e3d3cb5671519e8b9a9b45ea3af6ce1413b95 (diff) | |
download | CMake-c6c579f35a79feb7a11414207cbeb75b9298d59f.zip CMake-c6c579f35a79feb7a11414207cbeb75b9298d59f.tar.gz CMake-c6c579f35a79feb7a11414207cbeb75b9298d59f.tar.bz2 |
uninitialized var
Diffstat (limited to 'Source/cmake.cxx')
-rw-r--r-- | Source/cmake.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/cmake.cxx b/Source/cmake.cxx index 643024e..8c94405 100644 --- a/Source/cmake.cxx +++ b/Source/cmake.cxx @@ -36,6 +36,7 @@ cmake::cmake() { + m_Local = false; m_Verbose = false; m_InTryCompile = false; m_CacheManager = new cmCacheManager; |