Rename validate_triplet to is_valid_triplet

This commit is contained in:
Alexander Karatarakis 2016-09-29 12:35:27 -07:00
Родитель 033f577c51
Коммит 8e3ee05230
3 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -13,7 +13,7 @@ namespace vcpkg
fs::path package_dir(const package_spec& spec) const;
fs::path port_dir(const package_spec& spec) const;
bool validate_triplet(const triplet& t) const;
bool is_valid_triplet(const triplet& t) const;
std::tr2::sys::path root;
std::tr2::sys::path packages;

Просмотреть файл

@ -87,7 +87,7 @@ static void inner(const vcpkg_cmd_arguments& args)
}
}
if (!paths.validate_triplet(default_target_triplet))
if (!paths.is_valid_triplet(default_target_triplet))
{
System::println(System::color::error, "Error: invalid triplet: %s", default_target_triplet.value);
TrackProperty("error", "invalid triplet: " + default_target_triplet.value);

Просмотреть файл

@ -57,7 +57,7 @@ namespace vcpkg
return this->ports / spec.name;
}
bool vcpkg_paths::validate_triplet(const triplet& t) const
bool vcpkg_paths::is_valid_triplet(const triplet& t) const
{
auto it = fs::directory_iterator(this->triplets);
for (; it != fs::directory_iterator(); ++it)