diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-05-24 10:55:43 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-05-24 10:55:43 (GMT) |
commit | df9635f386aeac10e23495b2124d7713324e5c29 (patch) | |
tree | 3a00abf1e59ccae572a2450d2b939e87c4d4130d /Source/cmake.cxx | |
parent | ad167479270e55151df54603496f6ee6bd3b0e42 (diff) | |
download | CMake-df9635f386aeac10e23495b2124d7713324e5c29.zip CMake-df9635f386aeac10e23495b2124d7713324e5c29.tar.gz CMake-df9635f386aeac10e23495b2124d7713324e5c29.tar.bz2 |
cmake: Remove redundant condition.
Diffstat (limited to 'Source/cmake.cxx')
-rw-r--r-- | Source/cmake.cxx | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/Source/cmake.cxx b/Source/cmake.cxx index b4565e7..1c9842e 100644 --- a/Source/cmake.cxx +++ b/Source/cmake.cxx @@ -1620,11 +1620,6 @@ int cmake::Run(const std::vector<std::string>& args, bool noconfigure) std::string message = "Build files have been written to: "; message += this->GetHomeOutputDirectory(); this->UpdateProgress(message.c_str(), -1); - if(ret) - { - return ret; - } - return ret; } |