summaryrefslogtreecommitdiff
path: root/Source/cmStringCommand.cxx
diff options
context:
space:
mode:
authorSebastian Holtermann <sebholt@xwmw.org>2019-08-18 13:58:04 +0200
committerSebastian Holtermann <sebholt@xwmw.org>2019-08-18 14:17:50 +0200
commitf1c529c4fbea1963f7df92597a350e066319a1e1 (patch)
treea544103f96e0b03a8b659d4d5767360ec05ff1cf /Source/cmStringCommand.cxx
parent34301441b963a2d7e02b4a4355a6634b3bbb7977 (diff)
downloadcmake-f1c529c4fbea1963f7df92597a350e066319a1e1.tar.gz
cmCryptoHash: Accept cm::string_view input
Diffstat (limited to 'Source/cmStringCommand.cxx')
-rw-r--r--Source/cmStringCommand.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmStringCommand.cxx b/Source/cmStringCommand.cxx
index 41d48ed3bd..5bff0e50e1 100644
--- a/Source/cmStringCommand.cxx
+++ b/Source/cmStringCommand.cxx
@@ -121,7 +121,7 @@ bool cmStringCommand::HandleHashCommand(std::vector<std::string> const& args)
return false;
}
- std::unique_ptr<cmCryptoHash> hash(cmCryptoHash::New(args[0].c_str()));
+ std::unique_ptr<cmCryptoHash> hash(cmCryptoHash::New(args[0]));
if (hash) {
std::string out = hash->HashString(args[2]);
this->Makefile->AddDefinition(args[1], out);