diff options
author | Regina Pfeifer <regina@mailbox.org> | 2018-11-19 17:10:40 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2018-11-20 15:36:08 (GMT) |
commit | 5731ec30f0596fefede4321e9883043aa7db60ba (patch) | |
tree | a9eb4745aac533e596391de8f58a9a7136f0a9f7 /Source/cmFileCommand.cxx | |
parent | 1dc85a6652bc8255ff7a9ef39028a7df45e3007b (diff) | |
download | CMake-5731ec30f0596fefede4321e9883043aa7db60ba.zip CMake-5731ec30f0596fefede4321e9883043aa7db60ba.tar.gz CMake-5731ec30f0596fefede4321e9883043aa7db60ba.tar.bz2 |
clang-tidy: fix warnings from version 7
Fix some warnings that are new since clang-tidy version 4, and update
`.clang-tidy` to suppress the rest.
Diffstat (limited to 'Source/cmFileCommand.cxx')
-rw-r--r-- | Source/cmFileCommand.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmFileCommand.cxx b/Source/cmFileCommand.cxx index f86e5e2..3012b0a 100644 --- a/Source/cmFileCommand.cxx +++ b/Source/cmFileCommand.cxx @@ -2824,7 +2824,7 @@ bool cmFileCommand::HandleDownloadCommand(std::vector<std::string> const& args) std::string algo = i->substr(0, pos); expectedHash = cmSystemTools::LowerCase(i->substr(pos + 1)); hash = std::unique_ptr<cmCryptoHash>(cmCryptoHash::New(algo.c_str())); - if (!hash.get()) { + if (!hash) { std::string err = "DOWNLOAD EXPECTED_HASH given unknown ALGO: "; err += algo; this->SetError(err); |