diff options
author | Ken Martin <ken.martin@kitware.com> | 2006-07-18 13:32:45 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2006-07-18 13:32:45 (GMT) |
commit | dd8247e324ba4c97ffc2f4649d52b1a57c74aceb (patch) | |
tree | 6e54750079b2b0f310874fee2fd943fccf94801d | |
parent | f572d9afed793bd2a0c2efa29851e52d27bd454f (diff) | |
download | CMake-dd8247e324ba4c97ffc2f4649d52b1a57c74aceb.zip CMake-dd8247e324ba4c97ffc2f4649d52b1a57c74aceb.tar.gz CMake-dd8247e324ba4c97ffc2f4649d52b1a57c74aceb.tar.bz2 |
STYLE: fix long lines
-rw-r--r-- | Source/cmGlobalUnixMakefileGenerator3.cxx | 3 | ||||
-rw-r--r-- | Source/cmLocalVisualStudioGenerator.cxx | 5 |
2 files changed, 4 insertions, 4 deletions
diff --git a/Source/cmGlobalUnixMakefileGenerator3.cxx b/Source/cmGlobalUnixMakefileGenerator3.cxx index a817b30..e194e34 100644 --- a/Source/cmGlobalUnixMakefileGenerator3.cxx +++ b/Source/cmGlobalUnixMakefileGenerator3.cxx @@ -1000,7 +1000,8 @@ GetNumberOfProgressActionsInAll(cmLocalUnixMakefileGenerator3 *lg) // The directory-level rule depends on the directory-level // rules of the subdirectories. for(std::vector<cmLocalGenerator*>::iterator sdi = - lg3->GetChildren().begin(); sdi != lg3->GetChildren().end(); ++sdi) + lg3->GetChildren().begin(); + sdi != lg3->GetChildren().end(); ++sdi) { cmLocalUnixMakefileGenerator3* slg = static_cast<cmLocalUnixMakefileGenerator3*>(*sdi); diff --git a/Source/cmLocalVisualStudioGenerator.cxx b/Source/cmLocalVisualStudioGenerator.cxx index 344fcc6..b4ab9e2 100644 --- a/Source/cmLocalVisualStudioGenerator.cxx +++ b/Source/cmLocalVisualStudioGenerator.cxx @@ -31,9 +31,8 @@ cmLocalVisualStudioGenerator::~cmLocalVisualStudioGenerator() } //---------------------------------------------------------------------------- -void -cmLocalVisualStudioGenerator -::ComputeObjectNameRequirements(std::vector<cmSourceGroup> const& sourceGroups) +void cmLocalVisualStudioGenerator::ComputeObjectNameRequirements +(std::vector<cmSourceGroup> const& sourceGroups) { // Clear the current set of requirements. this->NeedObjectName.clear(); |