diff options
author | Ken Martin <ken.martin@kitware.com> | 2006-05-10 18:54:46 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2006-05-10 18:54:46 (GMT) |
commit | a5ed047d4be3f0fbf399813a96e1536e5703b934 (patch) | |
tree | 765b748db4d05e77dda6c8d8993339d227e3f1f8 /Source/cmDependsC.cxx | |
parent | d77fbb9640900294e5a32305188c89a3e70e6cc5 (diff) | |
download | CMake-a5ed047d4be3f0fbf399813a96e1536e5703b934.zip CMake-a5ed047d4be3f0fbf399813a96e1536e5703b934.tar.gz CMake-a5ed047d4be3f0fbf399813a96e1536e5703b934.tar.bz2 |
STYLE: fix line length
Diffstat (limited to 'Source/cmDependsC.cxx')
-rw-r--r-- | Source/cmDependsC.cxx | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/Source/cmDependsC.cxx b/Source/cmDependsC.cxx index 13ebdcd..ad1d021 100644 --- a/Source/cmDependsC.cxx +++ b/Source/cmDependsC.cxx @@ -112,8 +112,8 @@ bool cmDependsC::WriteDependencies(const char *src, const char *obj, } else { - for(std::vector<std::string>::const_iterator i = this->IncludePath->begin(); - i != this->IncludePath->end(); ++i) + for(std::vector<std::string>::const_iterator i = + this->IncludePath->begin(); i != this->IncludePath->end(); ++i) { // Construct the name of the file as if it were in the current // include directory. Avoid using a leading "./". @@ -370,7 +370,8 @@ bool cmDependsC::FileExistsOrIsGenerated(const std::string& fname, // Note that CMAKE_GENERATED_FILES is written with a conversion // relative to the home output directory. std::string rname = - cmSystemTools::RelativePath(this->HomeOutputDirectory.c_str(), fname.c_str()); + cmSystemTools::RelativePath(this->HomeOutputDirectory.c_str(), + fname.c_str()); if(this->FileIsGenerated(rname, scanned, dependencies)) { return true; @@ -387,8 +388,8 @@ bool cmDependsC::FileIsGenerated(const std::string& fname, std::set<cmStdString>& dependencies) { if(this->GeneratedFiles && - std::set<cmStdString>::const_iterator(this->GeneratedFiles->find(fname)) != - this->GeneratedFiles->end()) + std::set<cmStdString>::const_iterator(this->GeneratedFiles->find(fname)) + != this->GeneratedFiles->end()) { // If the file does not really exist yet pretend it has already // been scanned. When it exists later then dependencies will be |