aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/src/commands_build.cpp
diff options
context:
space:
mode:
authorAlexander Karatarakis <alkarata@microsoft.com>2017-08-28 18:58:59 -0700
committerAlexander Karatarakis <alkarata@microsoft.com>2017-08-28 19:54:01 -0700
commitd02d44b0f12ae0603c5578bdcc4c0a51a3e309c7 (patch)
tree0eb3e0e3f16f756de2112b98a647e427dd1a8771 /toolsrc/src/commands_build.cpp
parent4a6b43c15a2b6c121686355f37443da6e2d05c9b (diff)
downloadvcpkg-d02d44b0f12ae0603c5578bdcc4c0a51a3e309c7.tar.gz
vcpkg-d02d44b0f12ae0603c5578bdcc4c0a51a3e309c7.zip
Use Strings::EMPTY instead of ""
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 71cd1b845..421568ce5 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("");
+ System::println(Strings::EMPTY);
for (const auto& p : result.unmet_dependencies)
{
System::println(" %s", p);
}
- System::println("");
+ System::println(Strings::EMPTY);
Checks::exit_fail(VCPKG_LINE_INFO);
}