aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/src/vcpkglib.cpp
diff options
context:
space:
mode:
authorAlexander Karatarakis <alkarata@microsoft.com>2017-04-03 16:29:11 -0700
committerAlexander Karatarakis <alkarata@microsoft.com>2017-04-04 16:44:46 -0700
commit3f76b9e53d48e34960bb5947bbbb880ac806281b (patch)
treee9ecddfe9b170f105e3ba58e7137f8ffa845fc13 /toolsrc/src/vcpkglib.cpp
parent402552ef934d30c923e633daadc59ff853115df2 (diff)
downloadvcpkg-3f76b9e53d48e34960bb5947bbbb880ac806281b.tar.gz
vcpkg-3f76b9e53d48e34960bb5947bbbb880ac806281b.zip
vcpkg_paths -> VcpkgPaths
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 b40942f65..ba18dcd31 100644
--- a/toolsrc/src/vcpkglib.cpp
+++ b/toolsrc/src/vcpkglib.cpp
@@ -33,7 +33,7 @@ namespace vcpkg
return StatusParagraphs(std::move(status_pghs));
}
- StatusParagraphs database_load_check(const vcpkg_paths& paths)
+ StatusParagraphs database_load_check(const VcpkgPaths& paths)
{
auto updates_dir = paths.vcpkg_dir_updates;
@@ -91,7 +91,7 @@ namespace vcpkg
return current_status_db;
}
- void write_update(const vcpkg_paths& paths, const StatusParagraph& p)
+ void write_update(const VcpkgPaths& paths, const StatusParagraph& p)
{
static int update_id = 0;
auto my_update_id = update_id++;
@@ -184,7 +184,7 @@ namespace vcpkg
return installed_packages;
}
- std::vector<StatusParagraph_and_associated_files> get_installed_files(const vcpkg_paths& paths, const StatusParagraphs& status_db)
+ std::vector<StatusParagraph_and_associated_files> get_installed_files(const VcpkgPaths& paths, const StatusParagraphs& status_db)
{
std::vector<StatusParagraph_and_associated_files> installed_files;