aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/include
diff options
context:
space:
mode:
authorAlexander Karatarakis <alkarata@microsoft.com>2017-04-13 17:19:26 -0700
committerAlexander Karatarakis <alkarata@microsoft.com>2017-04-14 14:31:45 -0700
commite3f4e09342179b6d911ada5a02b2a2b207790552 (patch)
tree7ffd2177d30160083c9378a479040ec6b7b91024 /toolsrc/include
parent5405d4d58772784395adab89d88fb18cd808317d (diff)
downloadvcpkg-e3f4e09342179b6d911ada5a02b2a2b207790552.tar.gz
vcpkg-e3f4e09342179b6d911ada5a02b2a2b207790552.zip
Remove explicit keyword from constructor
Diffstat (limited to 'toolsrc/include')
-rw-r--r--toolsrc/include/vcpkg_Dependencies.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/toolsrc/include/vcpkg_Dependencies.h b/toolsrc/include/vcpkg_Dependencies.h
index f35250447..247113573 100644
--- a/toolsrc/include/vcpkg_Dependencies.h
+++ b/toolsrc/include/vcpkg_Dependencies.h
@@ -38,7 +38,7 @@ namespace vcpkg::Dependencies
static bool compare_by_name(const InstallPlanAction* left, const InstallPlanAction* right);
InstallPlanAction();
- explicit InstallPlanAction(const PackageSpec& spec, const AnyParagraph& any_paragraph, const RequestType& request_type);
+ InstallPlanAction(const PackageSpec& spec, const AnyParagraph& any_paragraph, const RequestType& request_type);
InstallPlanAction(const InstallPlanAction&) = delete;
InstallPlanAction(InstallPlanAction&&) = default;
InstallPlanAction& operator=(const InstallPlanAction&) = delete;