From 05c9f77a4ae72b8339b027ccbe5a769fc627fe87 Mon Sep 17 00:00:00 2001 From: Robert Schumacher Date: Sat, 1 Apr 2017 01:39:24 -0700 Subject: [vcpkg] Use fmap instead of std::transform. --- toolsrc/src/commands_install.cpp | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) (limited to 'toolsrc/src') diff --git a/toolsrc/src/commands_install.cpp b/toolsrc/src/commands_install.cpp index 50ea0a603..e504cf8ee 100644 --- a/toolsrc/src/commands_install.cpp +++ b/toolsrc/src/commands_install.cpp @@ -116,14 +116,13 @@ namespace vcpkg::Commands::Install static ImmutableSortedVector build_list_of_package_files(const fs::path& package_dir) { const std::vector package_file_paths = Files::recursive_find_all_files_in_dir(package_dir); - std::vector package_files; const size_t package_remove_char_count = package_dir.generic_string().size() + 1; // +1 for the slash - std::transform(package_file_paths.cbegin(), package_file_paths.cend(), std::back_inserter(package_files), [package_remove_char_count](const fs::path& path) - { - std::string as_string = path.generic_string(); - as_string.erase(0, package_remove_char_count); - return std::move(as_string); - }); + auto package_files = Util::fmap(package_file_paths, [package_remove_char_count](const fs::path& path) + { + std::string as_string = path.generic_string(); + as_string.erase(0, package_remove_char_count); + return std::move(as_string); + }); return ImmutableSortedVector::create(std::move(package_files)); } -- cgit v1.2.3