diff options
| author | Alexander Karatarakis <alkarata@microsoft.com> | 2018-01-23 15:31:39 -0800 |
|---|---|---|
| committer | Alexander Karatarakis <alkarata@microsoft.com> | 2018-01-23 15:31:39 -0800 |
| commit | 47833bb39310c0c76a02f3724faf07b41488c736 (patch) | |
| tree | d504691c12274ed71035194a131a7fb284523379 | |
| parent | bff50291c209e7864ec1a58f8bc8d646ae7d7240 (diff) | |
| download | vcpkg-47833bb39310c0c76a02f3724faf07b41488c736.tar.gz vcpkg-47833bb39310c0c76a02f3724faf07b41488c736.zip | |
Parameter name consistency between declaration and definition
| -rw-r--r-- | toolsrc/src/vcpkg/dependencies.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/toolsrc/src/vcpkg/dependencies.cpp b/toolsrc/src/vcpkg/dependencies.cpp index 5ce96a3e1..236d38bea 100644 --- a/toolsrc/src/vcpkg/dependencies.cpp +++ b/toolsrc/src/vcpkg/dependencies.cpp @@ -415,10 +415,10 @@ namespace vcpkg::Dependencies static MarkPlusResult mark_plus(const std::string& feature, Cluster& cluster, - ClusterGraph& pkg_to_cluster, + ClusterGraph& graph, GraphPlan& graph_plan); - static void mark_minus(Cluster& cluster, ClusterGraph& pkg_to_cluster, GraphPlan& graph_plan); + static void mark_minus(Cluster& cluster, ClusterGraph& graph, GraphPlan& graph_plan); MarkPlusResult mark_plus(const std::string& feature, Cluster& cluster, ClusterGraph& graph, GraphPlan& graph_plan) { |
