cmFileCommand: remove an unnecessary cast

`cmCryptoHash::New` already returns a `unique_ptr`.
This commit is contained in:
Ben Boeckel
2022-05-17 13:11:30 -04:00
committed by Brad King
parent b89c085237
commit 16e6e4e7dd

View File

@@ -1870,7 +1870,7 @@ bool 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));
hash = cmCryptoHash::New(algo);
if (!hash) {
std::string err =
cmStrCat("DOWNLOAD EXPECTED_HASH given unknown ALGO: ", algo);