diff options
| author | Alexander Karatarakis <alkarata@microsoft.com> | 2017-04-19 17:44:26 -0700 |
|---|---|---|
| committer | Alexander Karatarakis <alkarata@microsoft.com> | 2017-04-21 18:06:39 -0700 |
| commit | 96955c08e763bea33399090881cf75578f172f34 (patch) | |
| tree | c86e634498a0f64b005901a2c7d4e3eab3d0069f /toolsrc/include | |
| parent | 736b9db03bd6a4636c88a40bf8fe076c173c6b98 (diff) | |
| download | vcpkg-96955c08e763bea33399090881cf75578f172f34.tar.gz vcpkg-96955c08e763bea33399090881cf75578f172f34.zip | |
InstallationDirs -> InstallDir
Diffstat (limited to 'toolsrc/include')
| -rw-r--r-- | toolsrc/include/vcpkg_Commands.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/toolsrc/include/vcpkg_Commands.h b/toolsrc/include/vcpkg_Commands.h index 629b0804d..f137747ee 100644 --- a/toolsrc/include/vcpkg_Commands.h +++ b/toolsrc/include/vcpkg_Commands.h @@ -43,12 +43,12 @@ namespace vcpkg::Commands namespace Install { - struct InstallationDirs + struct InstallDir { - static InstallationDirs from_destination_root(const fs::path& source_dir, - const fs::path& destination_root, - const std::string& destination_subdirectory, - const fs::path& listfile); + static InstallDir from_destination_root(const fs::path& source_dir, + const fs::path& destination_root, + const std::string& destination_subdirectory, + const fs::path& listfile); private: fs::path m_source_dir; // "source" from source-destination, not source code. @@ -63,7 +63,7 @@ namespace vcpkg::Commands const fs::path& listfile() const; }; - void install_files_and_write_listfile(Files::Filesystem& fs, const InstallationDirs& dirs); + void install_files_and_write_listfile(Files::Filesystem& fs, const InstallDir& dirs); void install_package(const VcpkgPaths& paths, const BinaryParagraph& binary_paragraph, StatusParagraphs* status_db); void perform_and_exit(const VcpkgCmdArguments& args, const VcpkgPaths& paths, const Triplet& default_triplet); } |
