diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2003-08-06 23:19:17 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2003-08-06 23:19:17 (GMT) |
commit | d0b33916423488132e9c7b0eba67bae6503b30b3 (patch) | |
tree | cdf6c5c8446b02c7ef8e062fb2fe79e95107ef9e /Source/cmMakefile.cxx | |
parent | 96d561aabc7ca453396b8d419b3398dea6b13572 (diff) | |
download | CMake-d0b33916423488132e9c7b0eba67bae6503b30b3.zip CMake-d0b33916423488132e9c7b0eba67bae6503b30b3.tar.gz CMake-d0b33916423488132e9c7b0eba67bae6503b30b3.tar.bz2 |
ENH: oops, initialize variable
Diffstat (limited to 'Source/cmMakefile.cxx')
-rw-r--r-- | Source/cmMakefile.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx index 70ca89d..4569ec7 100644 --- a/Source/cmMakefile.cxx +++ b/Source/cmMakefile.cxx @@ -2016,7 +2016,7 @@ void cmMakefile::GetListOfMacros(std::string& macros) { StringStringMap::iterator it; macros = ""; - int cc; + int cc = 0; for ( it = m_MacrosMap.begin(); it != m_MacrosMap.end(); ++it ) { if ( cc > 0 ) |