From 6ac7eb7bfb290735e37d2497aee9a1e417e9f403 Mon Sep 17 00:00:00 2001 From: Alexander Karatarakis Date: Mon, 3 Apr 2017 16:21:21 -0700 Subject: package_name_and_function -> PackageNameAndFunction --- 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 c6473fa8b..0cdd2d9d0 100644 --- a/toolsrc/include/vcpkg_Commands.h +++ b/toolsrc/include/vcpkg_Commands.h @@ -154,20 +154,20 @@ namespace vcpkg::Commands } template - struct package_name_and_function + struct PackageNameAndFunction { std::string name; 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) + T find(const std::string& command_name, const std::vector> available_commands) { - for (const package_name_and_function& cmd : available_commands) + for (const PackageNameAndFunction& cmd : available_commands) { if (cmd.name == command_name) { -- cgit v1.2.3