aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/src/StatusParagraphs.cpp
diff options
context:
space:
mode:
authorAlexander Karatarakis <alkarata@microsoft.com>2017-04-03 15:02:45 -0700
committerAlexander Karatarakis <alkarata@microsoft.com>2017-04-04 16:44:42 -0700
commitbdf80d63c663d6cc512db34be6a96cd9c66aaa99 (patch)
tree1ef318ec848d41ff62731fe7eff12e70cde28807 /toolsrc/src/StatusParagraphs.cpp
parent378b018321ef443b027fc02e78c57721edc68d94 (diff)
downloadvcpkg-bdf80d63c663d6cc512db34be6a96cd9c66aaa99.tar.gz
vcpkg-bdf80d63c663d6cc512db34be6a96cd9c66aaa99.zip
triplet -> Triplet
Diffstat (limited to 'toolsrc/src/StatusParagraphs.cpp')
-rw-r--r--toolsrc/src/StatusParagraphs.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/toolsrc/src/StatusParagraphs.cpp b/toolsrc/src/StatusParagraphs.cpp
index 3a5d66842..a153e2b97 100644
--- a/toolsrc/src/StatusParagraphs.cpp
+++ b/toolsrc/src/StatusParagraphs.cpp
@@ -11,7 +11,7 @@ namespace vcpkg
{
};
- StatusParagraphs::const_iterator StatusParagraphs::find(const std::string& name, const triplet& target_triplet) const
+ StatusParagraphs::const_iterator StatusParagraphs::find(const std::string& name, const Triplet& target_triplet) const
{
return std::find_if(begin(), end(), [&](const std::unique_ptr<StatusParagraph>& pgh)
{
@@ -20,7 +20,7 @@ namespace vcpkg
});
}
- StatusParagraphs::iterator StatusParagraphs::find(const std::string& name, const triplet& target_triplet)
+ StatusParagraphs::iterator StatusParagraphs::find(const std::string& name, const Triplet& target_triplet)
{
return std::find_if(begin(), end(), [&](const std::unique_ptr<StatusParagraph>& pgh)
{
@@ -29,7 +29,7 @@ namespace vcpkg
});
}
- StatusParagraphs::const_iterator StatusParagraphs::find_installed(const std::string& name, const triplet& target_triplet) const
+ StatusParagraphs::const_iterator StatusParagraphs::find_installed(const std::string& name, const Triplet& target_triplet) const
{
const const_iterator it = find(name, target_triplet);
if (it != end() && (*it)->want == want_t::install)