From 0621449f1807aacebb6ad10f42877322abb48d9d Mon Sep 17 00:00:00 2001 From: Alexander Karatarakis Date: Mon, 3 Apr 2017 16:03:04 -0700 Subject: command_type_x -> CommandTypeX --- toolsrc/include/vcpkg_Commands.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'toolsrc/include') diff --git a/toolsrc/include/vcpkg_Commands.h b/toolsrc/include/vcpkg_Commands.h index b7e981b41..9ba423a08 100644 --- a/toolsrc/include/vcpkg_Commands.h +++ b/toolsrc/include/vcpkg_Commands.h @@ -8,9 +8,9 @@ namespace vcpkg::Commands { - using command_type_a = void(*)(const VcpkgCmdArguments& args, const vcpkg_paths& paths, const Triplet& default_target_triplet); - using command_type_b = void(*)(const VcpkgCmdArguments& args, const vcpkg_paths& paths); - using command_type_c = void(*)(const VcpkgCmdArguments& args); + using CommandTypeA = void(*)(const VcpkgCmdArguments& args, const vcpkg_paths& paths, const Triplet& default_target_triplet); + using CommandTypeB = void(*)(const VcpkgCmdArguments& args, const vcpkg_paths& paths); + using CommandTypeC = void(*)(const VcpkgCmdArguments& args); namespace Build { @@ -160,9 +160,9 @@ namespace vcpkg::Commands T function; }; - const std::vector>& get_available_commands_type_a(); - const std::vector>& get_available_commands_type_b(); - const std::vector>& get_available_commands_type_c(); + const std::vector>& get_available_commands_type_a(); + const std::vector>& get_available_commands_type_b(); + const std::vector>& get_available_commands_type_c(); template T find(const std::string& command_name, const std::vector> available_commands) -- cgit v1.2.3