summaryrefslogtreecommitdiffstats
path: root/Source/cmDepends.cxx
diff options
context:
space:
mode:
authorKen Martin <ken.martin@kitware.com>2006-05-10 18:15:15 (GMT)
committerKen Martin <ken.martin@kitware.com>2006-05-10 18:15:15 (GMT)
commitd77fbb9640900294e5a32305188c89a3e70e6cc5 (patch)
tree50d36cc5b6773d2172a749135a8b3ee1e803c64e /Source/cmDepends.cxx
parent20c27063ddbf22b5a90d27a2d45bd1b3d140e532 (diff)
downloadCMake-d77fbb9640900294e5a32305188c89a3e70e6cc5.zip
CMake-d77fbb9640900294e5a32305188c89a3e70e6cc5.tar.gz
CMake-d77fbb9640900294e5a32305188c89a3e70e6cc5.tar.bz2
STYLE: fix line length
Diffstat (limited to 'Source/cmDepends.cxx')
-rw-r--r--Source/cmDepends.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmDepends.cxx b/Source/cmDepends.cxx
index 7ea0e7e..f6d577c 100644
--- a/Source/cmDepends.cxx
+++ b/Source/cmDepends.cxx
@@ -105,7 +105,8 @@ bool cmDepends::CheckDependencies(std::istream& internalDepends)
bool okay = true;
while(internalDepends.getline(this->Dependee, this->MaxPath))
{
- if ( this->Dependee[0] == 0 || this->Dependee[0] == '#' || this->Dependee[0] == '\r' )
+ if ( this->Dependee[0] == 0 || this->Dependee[0] == '#' ||
+ this->Dependee[0] == '\r' )
{
continue;
}