Remove explicit keyword from constructor

This commit is contained in:
Alexander Karatarakis 2017-04-13 17:19:26 -07:00
parent 5405d4d587
commit e3f4e09342

View File

@ -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;