diff options
| author | Alexander Karatarakis <alkarata@microsoft.com> | 2017-04-03 16:29:11 -0700 |
|---|---|---|
| committer | Alexander Karatarakis <alkarata@microsoft.com> | 2017-04-04 16:44:46 -0700 |
| commit | 3f76b9e53d48e34960bb5947bbbb880ac806281b (patch) | |
| tree | e9ecddfe9b170f105e3ba58e7137f8ffa845fc13 /toolsrc/src/commands_install.cpp | |
| parent | 402552ef934d30c923e633daadc59ff853115df2 (diff) | |
| download | vcpkg-3f76b9e53d48e34960bb5947bbbb880ac806281b.tar.gz vcpkg-3f76b9e53d48e34960bb5947bbbb880ac806281b.zip | |
vcpkg_paths -> VcpkgPaths
Diffstat (limited to 'toolsrc/src/commands_install.cpp')
| -rw-r--r-- | toolsrc/src/commands_install.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/toolsrc/src/commands_install.cpp b/toolsrc/src/commands_install.cpp index 33cc2b677..b59b13fe0 100644 --- a/toolsrc/src/commands_install.cpp +++ b/toolsrc/src/commands_install.cpp @@ -14,7 +14,7 @@ namespace vcpkg::Commands::Install using Dependencies::PackageSpecWithInstallPlan; using Dependencies::InstallPlanType; - static void install_and_write_listfile(const vcpkg_paths& paths, const BinaryParagraph& bpgh) + static void install_and_write_listfile(const VcpkgPaths& paths, const BinaryParagraph& bpgh) { std::vector<std::string> output; @@ -136,7 +136,7 @@ namespace vcpkg::Commands::Install return SortedVector<std::string>(std::move(installed_files)); } - void install_package(const vcpkg_paths& paths, const BinaryParagraph& binary_paragraph, StatusParagraphs* status_db) + void install_package(const VcpkgPaths& paths, const BinaryParagraph& binary_paragraph, StatusParagraphs* status_db) { const fs::path package_dir = paths.package_dir(binary_paragraph.spec); const Triplet& triplet = binary_paragraph.spec.target_triplet(); @@ -183,7 +183,7 @@ namespace vcpkg::Commands::Install status_db->insert(std::make_unique<StatusParagraph>(spgh)); } - void perform_and_exit(const VcpkgCmdArguments& args, const vcpkg_paths& paths, const Triplet& default_target_triplet) + void perform_and_exit(const VcpkgCmdArguments& args, const VcpkgPaths& paths, const Triplet& default_target_triplet) { // input sanitization static const std::string example = Commands::Help::create_example_string("install zlib zlib:x64-windows curl boost"); |
