From e3f4e09342179b6d911ada5a02b2a2b207790552 Mon Sep 17 00:00:00 2001 From: Alexander Karatarakis Date: Thu, 13 Apr 2017 17:19:26 -0700 Subject: [PATCH] Remove explicit keyword from constructor --- toolsrc/include/vcpkg_Dependencies.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;