Browse Source

Fix warnings in CMake source code.

David Cole 16 years ago
parent
commit
f9c0e13975
1 changed files with 3 additions and 5 deletions
  1. 3 5
      Source/cmLocalUnixMakefileGenerator3.cxx

+ 3 - 5
Source/cmLocalUnixMakefileGenerator3.cxx

@@ -1434,11 +1434,9 @@ bool cmLocalUnixMakefileGenerator3::UpdateDependencies(const char* tgtInfo,
 
     return this->ScanDependencies(dir.c_str(), validDependencies);
     }
-  else
-    {
-    // The dependencies are already up-to-date.
-    return true;
-    }
+
+  // The dependencies are already up-to-date.
+  return true;
 }
 
 //----------------------------------------------------------------------------