diff options
Diffstat (limited to 'toolsrc/src/commands_available_commands.cpp')
| -rw-r--r-- | toolsrc/src/commands_available_commands.cpp | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/toolsrc/src/commands_available_commands.cpp b/toolsrc/src/commands_available_commands.cpp index 4fdccff1d..efe4ff740 100644 --- a/toolsrc/src/commands_available_commands.cpp +++ b/toolsrc/src/commands_available_commands.cpp @@ -1,4 +1,5 @@ #include "pch.h" + #include "vcpkg_Commands.h" namespace vcpkg::Commands @@ -6,12 +7,9 @@ namespace vcpkg::Commands const std::vector<PackageNameAndFunction<CommandTypeA>>& get_available_commands_type_a() { static std::vector<PackageNameAndFunction<CommandTypeA>> t = { - { "install", &Install::perform_and_exit }, - { "ci", &CI::perform_and_exit }, - { "remove", &Remove::perform_and_exit }, - { "build", &Build::perform_and_exit }, - { "env", &Env::perform_and_exit }, - { "build-external", &BuildExternal::perform_and_exit }, + { "install", &Install::perform_and_exit }, { "ci", &CI::perform_and_exit }, + { "remove", &Remove::perform_and_exit }, { "build", &Build::perform_and_exit }, + { "env", &Env::perform_and_exit }, { "build-external", &BuildExternal::perform_and_exit }, { "export", &Export::perform_and_exit }, }; return t; |
