diff options
Diffstat (limited to 'install_plan.h')
-rw-r--r-- | install_plan.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/install_plan.h b/install_plan.h index b6bf293f..b30170ee 100644 --- a/install_plan.h +++ b/install_plan.h @@ -95,7 +95,7 @@ class ActionTraits<InstallPlanAction> { class InstallPlanAction : public Action<InstallPlanAction> { public: InstallPlanAction() {} - InstallPlanAction(const InstallPlan& install_plan): + explicit InstallPlanAction(const InstallPlan& install_plan): install_plan_(install_plan) {} virtual void PerformAction() { @@ -116,7 +116,7 @@ class InstallPlanAction : public Action<InstallPlanAction> { private: InstallPlan install_plan_; - DISALLOW_COPY_AND_ASSIGN (InstallPlanAction); + DISALLOW_COPY_AND_ASSIGN(InstallPlanAction); }; } // namespace chromeos_update_engine |