aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/src
diff options
context:
space:
mode:
authorAlexander Karatarakis <alkarata@microsoft.com>2017-04-10 12:58:19 -0700
committerAlexander Karatarakis <alkarata@microsoft.com>2017-04-10 12:58:19 -0700
commitf306e8770fac464db20e536eb847d90a2c85d8c0 (patch)
tree6f966cc68883f3d9e8dec13bbca315c3fd357125 /toolsrc/src
parentf7944d40a6ca5a3f85f151e81674910ba76dbf10 (diff)
downloadvcpkg-f306e8770fac464db20e536eb847d90a2c85d8c0.tar.gz
vcpkg-f306e8770fac464db20e536eb847d90a2c85d8c0.zip
Formatting
Diffstat (limited to 'toolsrc/src')
-rw-r--r--toolsrc/src/commands_available_commands.cpp42
1 files changed, 21 insertions, 21 deletions
diff --git a/toolsrc/src/commands_available_commands.cpp b/toolsrc/src/commands_available_commands.cpp
index 870831599..e4c5135c7 100644
--- a/toolsrc/src/commands_available_commands.cpp
+++ b/toolsrc/src/commands_available_commands.cpp
@@ -6,12 +6,12 @@ namespace vcpkg::Commands
const std::vector<PackageNameAndFunction<CommandTypeA>>& get_available_commands_type_a()
{
static std::vector<PackageNameAndFunction<CommandTypeA>> t = {
- {"install", &Install::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}
+ { "remove", &Remove::perform_and_exit },
+ { "build", &Build::perform_and_exit },
+ { "env", &Env::perform_and_exit },
+ { "build-external", &BuildExternal::perform_and_exit }
};
return t;
}
@@ -19,19 +19,19 @@ namespace vcpkg::Commands
const std::vector<PackageNameAndFunction<CommandTypeB>>& get_available_commands_type_b()
{
static std::vector<PackageNameAndFunction<CommandTypeB>> t = {
- {"/?", &Help::perform_and_exit},
- {"help", &Help::perform_and_exit},
- {"search", &Search::perform_and_exit},
- {"list", &List::perform_and_exit},
- {"integrate", &Integrate::perform_and_exit},
- {"owns", &Owns::perform_and_exit},
- {"update", &Update::perform_and_exit},
- {"depend-info", &DependInfo::perform_and_exit},
- {"edit", &Edit::perform_and_exit},
- {"create", &Create::perform_and_exit},
- {"import", &Import::perform_and_exit},
- {"cache", &Cache::perform_and_exit},
- {"portsdiff", &PortsDiff::perform_and_exit}
+ { "/?", &Help::perform_and_exit },
+ { "help", &Help::perform_and_exit },
+ { "search", &Search::perform_and_exit },
+ { "list", &List::perform_and_exit },
+ { "integrate", &Integrate::perform_and_exit },
+ { "owns", &Owns::perform_and_exit },
+ { "update", &Update::perform_and_exit },
+ { "depend-info", &DependInfo::perform_and_exit },
+ { "edit", &Edit::perform_and_exit },
+ { "create", &Create::perform_and_exit },
+ { "import", &Import::perform_and_exit },
+ { "cache", &Cache::perform_and_exit },
+ { "portsdiff", &PortsDiff::perform_and_exit }
};
return t;
}
@@ -39,9 +39,9 @@ namespace vcpkg::Commands
const std::vector<PackageNameAndFunction<CommandTypeC>>& get_available_commands_type_c()
{
static std::vector<PackageNameAndFunction<CommandTypeC>> t = {
- {"version", &Version::perform_and_exit},
- {"contact", &Contact::perform_and_exit},
- {"hash", &Hash::perform_and_exit},
+ { "version", &Version::perform_and_exit },
+ { "contact", &Contact::perform_and_exit },
+ { "hash", &Hash::perform_and_exit },
};
return t;
}