mirror of
https://github.com/cemu-project/vcpkg.git
synced 2025-02-24 11:37:12 +01:00
Add find_installed() overload
This commit is contained in:
parent
ad24821dce
commit
c91ac99d4a
@ -20,6 +20,11 @@ namespace vcpkg
|
||||
}
|
||||
const_iterator find(const std::string& name, const Triplet& target_triplet) const;
|
||||
iterator find(const std::string& name, const Triplet& target_triplet);
|
||||
|
||||
const_iterator find_installed(const PackageSpec& spec) const
|
||||
{
|
||||
return find_installed(spec.name(), spec.target_triplet());
|
||||
}
|
||||
const_iterator find_installed(const std::string& name, const Triplet& target_triplet) const;
|
||||
|
||||
iterator insert(std::unique_ptr<StatusParagraph>);
|
||||
|
Loading…
x
Reference in New Issue
Block a user