aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/src/vcpkglib.cpp
diff options
context:
space:
mode:
authorAlexander Karatarakis <alkarata@microsoft.com>2017-04-03 16:32:14 -0700
committerAlexander Karatarakis <alkarata@microsoft.com>2017-04-04 16:47:06 -0700
commiteeb87e10510d633fe1a019771ad6368e2e8d1e3d (patch)
treebb676a1fdaa897d850059d3fe56233ee0025eb7d /toolsrc/src/vcpkglib.cpp
parente401799aca7ed685f195157c37849a5b09fffca2 (diff)
downloadvcpkg-eeb87e10510d633fe1a019771ad6368e2e8d1e3d.tar.gz
vcpkg-eeb87e10510d633fe1a019771ad6368e2e8d1e3d.zip
StatusParagraph_and_associated_files -> StatusParagraphAndAssociatedFiles
Diffstat (limited to 'toolsrc/src/vcpkglib.cpp')
-rw-r--r--toolsrc/src/vcpkglib.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/toolsrc/src/vcpkglib.cpp b/toolsrc/src/vcpkglib.cpp
index ba18dcd31..5e847019f 100644
--- a/toolsrc/src/vcpkglib.cpp
+++ b/toolsrc/src/vcpkglib.cpp
@@ -184,9 +184,9 @@ namespace vcpkg
return installed_packages;
}
- std::vector<StatusParagraph_and_associated_files> get_installed_files(const VcpkgPaths& paths, const StatusParagraphs& status_db)
+ std::vector<StatusParagraphAndAssociatedFiles> get_installed_files(const VcpkgPaths& paths, const StatusParagraphs& status_db)
{
- std::vector<StatusParagraph_and_associated_files> installed_files;
+ std::vector<StatusParagraphAndAssociatedFiles> installed_files;
for (const std::unique_ptr<StatusParagraph>& pgh : status_db)
{
@@ -208,7 +208,7 @@ namespace vcpkg
}
), installed_files_of_current_pgh.end());
- StatusParagraph_and_associated_files pgh_and_files = { *pgh, SortedVector<std::string>(std::move(installed_files_of_current_pgh)) };
+ StatusParagraphAndAssociatedFiles pgh_and_files = { *pgh, SortedVector<std::string>(std::move(installed_files_of_current_pgh)) };
installed_files.push_back(std::move(pgh_and_files));
}