aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/src/main.cpp
diff options
context:
space:
mode:
authorAlexander Karatarakis <alkarata@microsoft.com>2017-01-12 22:03:57 -0800
committerAlexander Karatarakis <alkarata@microsoft.com>2017-01-12 22:03:57 -0800
commitcc8851144a871931b93d84bd962364159ad1c424 (patch)
treedb9511533d051dcbcd3c8a2edc6854aa4ff7e9e7 /toolsrc/src/main.cpp
parent8e1ed2c9a95fa5b9e0bb0a9849a6e20878696f8c (diff)
downloadvcpkg-cc8851144a871931b93d84bd962364159ad1c424.tar.gz
vcpkg-cc8851144a871931b93d84bd962364159ad1c424.zip
Reorganize commands, each in its own namespace
Additionally, functions related to a command can now live in the same namespace
Diffstat (limited to 'toolsrc/src/main.cpp')
-rw-r--r--toolsrc/src/main.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/toolsrc/src/main.cpp b/toolsrc/src/main.cpp
index 8490dc81b..08e65391f 100644
--- a/toolsrc/src/main.cpp
+++ b/toolsrc/src/main.cpp
@@ -21,7 +21,7 @@ bool g_debugging = false;
void invalid_command(const std::string& cmd)
{
System::println(System::color::error, "invalid command: %s", cmd);
- Commands::Helpers::print_usage();
+ Commands::Help::print_usage();
exit(EXIT_FAILURE);
}
@@ -30,7 +30,7 @@ static void inner(const vcpkg_cmd_arguments& args)
TrackProperty("command", args.command);
if (args.command.empty())
{
- Commands::Helpers::print_usage();
+ Commands::Help::print_usage();
exit(EXIT_FAILURE);
}