diff options
author | Ken Martin <ken.martin@kitware.com> | 2006-06-05 18:32:12 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2006-06-05 18:32:12 (GMT) |
commit | 7d5bc02c9d18278d47e81db766aa66c1797eafee (patch) | |
tree | ab9aa871b9b4ab2de7ec3cda7bfe56463bc1b524 /Source/cmDependsC.cxx | |
parent | 503e2baafb10cf69139b4767ce342e0327f43e25 (diff) | |
download | CMake-7d5bc02c9d18278d47e81db766aa66c1797eafee.zip CMake-7d5bc02c9d18278d47e81db766aa66c1797eafee.tar.gz CMake-7d5bc02c9d18278d47e81db766aa66c1797eafee.tar.bz2 |
ENH: line lengths
Diffstat (limited to 'Source/cmDependsC.cxx')
-rw-r--r-- | Source/cmDependsC.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/cmDependsC.cxx b/Source/cmDependsC.cxx index 1a74f5c..7806ab3 100644 --- a/Source/cmDependsC.cxx +++ b/Source/cmDependsC.cxx @@ -203,10 +203,10 @@ bool cmDependsC::WriteDependencies(const char *src, const char *obj, for(std::set<cmStdString>::iterator i=dependencies.begin(); i != dependencies.end(); ++i) { - makeDepends << obj << ": " - << this->LocalGenerator->Convert(i->c_str(), - cmLocalGenerator::HOME_OUTPUT, - cmLocalGenerator::MAKEFILE) + makeDepends << obj << ": " << + this->LocalGenerator->Convert(i->c_str(), + cmLocalGenerator::HOME_OUTPUT, + cmLocalGenerator::MAKEFILE) << std::endl; internalDepends << " " << i->c_str() << std::endl; } |