diff options
author | Ken Martin <ken.martin@kitware.com> | 2006-05-10 17:56:27 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2006-05-10 17:56:27 (GMT) |
commit | 5ac59d81d343c8737513b06e6e6d04bb0e1804ed (patch) | |
tree | 175894d8c9f0a3eb9cbd8da6c0a67a3d3c88ed17 /Source/cmCacheManager.cxx | |
parent | aae0bcdacfb9cfc10769452895fbc96c43add1d6 (diff) | |
download | CMake-5ac59d81d343c8737513b06e6e6d04bb0e1804ed.zip CMake-5ac59d81d343c8737513b06e6e6d04bb0e1804ed.tar.gz CMake-5ac59d81d343c8737513b06e6e6d04bb0e1804ed.tar.bz2 |
STYLE: fix line length
Diffstat (limited to 'Source/cmCacheManager.cxx')
-rw-r--r-- | Source/cmCacheManager.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/cmCacheManager.cxx b/Source/cmCacheManager.cxx index fb6385e..a0a231f 100644 --- a/Source/cmCacheManager.cxx +++ b/Source/cmCacheManager.cxx @@ -423,8 +423,8 @@ bool cmCacheManager::SaveCache(const char* path) fout << "########################\n"; fout << "\n"; - for( std::map<cmStdString, CacheEntry>::const_iterator i = this->Cache.begin(); - i != this->Cache.end(); ++i) + for( std::map<cmStdString, CacheEntry>::const_iterator i = + this->Cache.begin(); i != this->Cache.end(); ++i) { const CacheEntry& ce = (*i).second; CacheEntryType t = ce.Type; @@ -724,8 +724,8 @@ void cmCacheManager::PrintCache(std::ostream& out) const { out << "=================================================" << std::endl; out << "CMakeCache Contents:" << std::endl; - for(std::map<cmStdString, CacheEntry>::const_iterator i = this->Cache.begin(); - i != this->Cache.end(); ++i) + for(std::map<cmStdString, CacheEntry>::const_iterator i = + this->Cache.begin(); i != this->Cache.end(); ++i) { if((*i).second.Type != INTERNAL) { |