aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/src/commands_hash.cpp
diff options
context:
space:
mode:
authorAlexander Karatarakis <alkarata@microsoft.com>2017-04-13 15:49:33 -0700
committerAlexander Karatarakis <alkarata@microsoft.com>2017-04-13 15:49:33 -0700
commit46999d38beb6f34f2c484f51e5421a8cabc23a07 (patch)
treed658fa564b0c9139130e4b0b9ce1ad8a4a03af43 /toolsrc/src/commands_hash.cpp
parent294159bfd1a25fbffac8051bdf76f2cb88add0fd (diff)
downloadvcpkg-46999d38beb6f34f2c484f51e5421a8cabc23a07.tar.gz
vcpkg-46999d38beb6f34f2c484f51e5421a8cabc23a07.zip
Use Util::erase_remove_if()
Diffstat (limited to 'toolsrc/src/commands_hash.cpp')
-rw-r--r--toolsrc/src/commands_hash.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/toolsrc/src/commands_hash.cpp b/toolsrc/src/commands_hash.cpp
index 2ffa3a9aa..b6355dfbd 100644
--- a/toolsrc/src/commands_hash.cpp
+++ b/toolsrc/src/commands_hash.cpp
@@ -1,6 +1,7 @@
#include "pch.h"
#include "vcpkg_Commands.h"
#include "vcpkg_System.h"
+#include "vcpkg_Util.h"
namespace vcpkg::Commands::Hash
{
@@ -20,7 +21,7 @@ namespace vcpkg::Commands::Hash
Checks::check_exit(VCPKG_LINE_INFO, end != std::string::npos, "Unexpected output format from command: %s", Strings::utf16_to_utf8(cmd_line));
auto hash = output.substr(start, end - start);
- hash.erase(std::remove_if(hash.begin(), hash.end(), isspace), hash.end());
+ Util::erase_remove_if(hash, isspace);
System::println(hash);
}