diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2004-04-29 16:33:18 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2004-04-29 16:33:18 (GMT) |
commit | 56f960296f45e770814442bd7e221767f5584339 (patch) | |
tree | 2f0f1d8981453072a6964154dc02a967e1b3ce8c /Source/cmLocalUnixMakefileGenerator.cxx | |
parent | 55af10416997d9e46de98cca64c98a50543d7b76 (diff) | |
download | CMake-56f960296f45e770814442bd7e221767f5584339.zip CMake-56f960296f45e770814442bd7e221767f5584339.tar.gz CMake-56f960296f45e770814442bd7e221767f5584339.tar.bz2 |
ENH: remove warnings
Diffstat (limited to 'Source/cmLocalUnixMakefileGenerator.cxx')
-rw-r--r-- | Source/cmLocalUnixMakefileGenerator.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmLocalUnixMakefileGenerator.cxx b/Source/cmLocalUnixMakefileGenerator.cxx index 367124f..c3ebabf 100644 --- a/Source/cmLocalUnixMakefileGenerator.cxx +++ b/Source/cmLocalUnixMakefileGenerator.cxx @@ -3081,7 +3081,7 @@ cmLocalUnixMakefileGenerator::CreateSafeUniqueObjectFileName(const char* sin) if ( it == m_UniqueObjectNamesMap.end() ) { std::string ssin = sin; - bool done = false; + bool done; int cc = 0; char rpstr[100]; sprintf(rpstr, "_p_"); |