aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/include
diff options
context:
space:
mode:
authorRobert Schumacher <roschuma@microsoft.com>2018-02-28 12:15:16 -0800
committerRobert Schumacher <roschuma@microsoft.com>2018-02-28 12:15:16 -0800
commitbbbbfb9e79a201a7c479fbc9e8ca14cd8569703d (patch)
tree6d2335cc0c17ebc4d0a0a566c16f293a3bcfc45f /toolsrc/include
parentef4febc7ef08d1aaa3fb97efadf09e2ad2b9464d (diff)
downloadvcpkg-bbbbfb9e79a201a7c479fbc9e8ca14cd8569703d.tar.gz
vcpkg-bbbbfb9e79a201a7c479fbc9e8ca14cd8569703d.zip
[vcpkg] Add tests for create_export_plan and remove unused arguments
Diffstat (limited to 'toolsrc/include')
-rw-r--r--toolsrc/include/vcpkg/dependencies.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/toolsrc/include/vcpkg/dependencies.h b/toolsrc/include/vcpkg/dependencies.h
index 6e02e4efd..fadb8cc7e 100644
--- a/toolsrc/include/vcpkg/dependencies.h
+++ b/toolsrc/include/vcpkg/dependencies.h
@@ -93,7 +93,7 @@ namespace vcpkg::Dependencies
enum class ExportPlanType
{
UNKNOWN,
- PORT_AVAILABLE_BUT_NOT_BUILT,
+ NOT_BUILT,
ALREADY_BUILT
};
@@ -165,9 +165,7 @@ namespace vcpkg::Dependencies
std::vector<RemovePlanAction> create_remove_plan(const std::vector<PackageSpec>& specs,
const StatusParagraphs& status_db);
- std::vector<ExportPlanAction> create_export_plan(const PortFileProvider& port_file_provider,
- const VcpkgPaths& paths,
- const std::vector<PackageSpec>& specs,
+ std::vector<ExportPlanAction> create_export_plan(const std::vector<PackageSpec>& specs,
const StatusParagraphs& status_db);
std::vector<AnyAction> create_feature_install_plan(const std::unordered_map<std::string, SourceControlFile>& map,