Remove unused function

This commit is contained in:
Alexander Karatarakis 2017-02-17 15:53:18 -08:00
parent 573fc23f64
commit 39772adbfe
2 changed files with 0 additions and 6 deletions

View File

@ -20,7 +20,6 @@ namespace vcpkg
std::string command;
std::vector<std::string> command_arguments;
void vcpkg_cmd_arguments::check_no_optional_command_arguments() const;
std::unordered_set<std::string> check_and_get_optional_command_arguments(const std::vector<std::string>& valid_options) const;
void check_max_arg_count(const size_t expected_arg_count) const;

View File

@ -135,11 +135,6 @@ namespace vcpkg
return args;
}
void vcpkg_cmd_arguments::check_no_optional_command_arguments() const
{
this->check_and_get_optional_command_arguments({});
}
std::unordered_set<std::string> vcpkg_cmd_arguments::check_and_get_optional_command_arguments(const std::vector<std::string>& valid_options) const
{
std::unordered_set<std::string> output;