summaryrefslogtreecommitdiffstats
path: root/Source/cmDependsFortran.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2016-08-23 13:00:00 (GMT)
committerCMake Topic Stage <kwrobot@kitware.com>2016-08-23 13:00:00 (GMT)
commit797f7ad87d6f1b6dd7cbbb553d5525ac8ee390f1 (patch)
treef5922b06caf987f6faff13f8c2ba8e0f164457f6 /Source/cmDependsFortran.cxx
parent762131fe8d585ced6b259a451ccde8fded2a8ca4 (diff)
parent7b6349da4dc968691f1a374211fcc153c8b4f1c6 (diff)
downloadCMake-797f7ad87d6f1b6dd7cbbb553d5525ac8ee390f1.zip
CMake-797f7ad87d6f1b6dd7cbbb553d5525ac8ee390f1.tar.gz
CMake-797f7ad87d6f1b6dd7cbbb553d5525ac8ee390f1.tar.bz2
Merge topic 'else-after-return'
7b6349da CMake: don't use else after return 50ad1e0a CTest: don't use else after return 7f97a6c9 CPack: don't use else after return 4988b914 CursesDialog: don't use else after return
Diffstat (limited to 'Source/cmDependsFortran.cxx')
-rw-r--r--Source/cmDependsFortran.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmDependsFortran.cxx b/Source/cmDependsFortran.cxx
index d1521f0..5c863f0 100644
--- a/Source/cmDependsFortran.cxx
+++ b/Source/cmDependsFortran.cxx
@@ -521,7 +521,8 @@ bool cmDependsFortran::CopyModule(const std::vector<std::string>& args)
}
}
return true;
- } else if (cmSystemTools::FileExists(mod_lower.c_str(), true)) {
+ }
+ if (cmSystemTools::FileExists(mod_lower.c_str(), true)) {
if (cmDependsFortran::ModulesDiffer(mod_lower.c_str(), stamp.c_str(),
compilerId.c_str())) {
if (!cmSystemTools::CopyFileAlways(mod_lower, stamp)) {