summaryrefslogtreecommitdiffstats
path: root/Source/cmDepends.cxx
diff options
context:
space:
mode:
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;
}