aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/src/commands_build.cpp
diff options
context:
space:
mode:
authorAlexander Karatarakis <alkarata@microsoft.com>2017-08-28 19:32:07 -0700
committerAlexander Karatarakis <alkarata@microsoft.com>2017-08-28 19:54:01 -0700
commit03c4c7f8c49d103f57fe12899526b27fc8ccc452 (patch)
treecfc72900606995346a987ad25766912d96e959ab /toolsrc/src/commands_build.cpp
parent6684240090512f745bf7530b2fb4bcd31c3fb02e (diff)
downloadvcpkg-03c4c7f8c49d103f57fe12899526b27fc8ccc452.tar.gz
vcpkg-03c4c7f8c49d103f57fe12899526b27fc8ccc452.zip
Use System::println() with no args
Diffstat (limited to 'toolsrc/src/commands_build.cpp')
-rw-r--r--toolsrc/src/commands_build.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/toolsrc/src/commands_build.cpp b/toolsrc/src/commands_build.cpp
index 421568ce5..26a783a4b 100644
--- a/toolsrc/src/commands_build.cpp
+++ b/toolsrc/src/commands_build.cpp
@@ -68,12 +68,12 @@ namespace vcpkg::Commands::BuildCommand
System::println(System::Color::error,
"The build command requires all dependencies to be already installed.");
System::println("The following dependencies are missing:");
- System::println(Strings::EMPTY);
+ System::println();
for (const auto& p : result.unmet_dependencies)
{
System::println(" %s", p);
}
- System::println(Strings::EMPTY);
+ System::println();
Checks::exit_fail(VCPKG_LINE_INFO);
}