From e6e325b1cd92bf0b1aa05c84a2a757713f17fa08 Mon Sep 17 00:00:00 2001 From: Alexander Karatarakis Date: Mon, 30 Jan 2017 22:10:08 -0800 Subject: Fix usage of Strings::Joiner --- toolsrc/src/commands_install.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/toolsrc/src/commands_install.cpp b/toolsrc/src/commands_install.cpp index 439424d28..1f5a2234d 100644 --- a/toolsrc/src/commands_install.cpp +++ b/toolsrc/src/commands_install.cpp @@ -155,7 +155,7 @@ namespace vcpkg::Commands::Install triplet_install_path.generic_string(), binary_paragraph.spec); System::print("\n "); - System::println(Strings::join(intersection, "\n ")); + System::println(Strings::Joiner::on("\n ").join(intersection)); System::println(""); exit(EXIT_FAILURE); } -- cgit v1.2.3