summaryrefslogtreecommitdiff
path: root/src/components/application_manager/rpc_plugins/vehicle_info_plugin/src/vehicle_info_hmi_command_factory.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/application_manager/rpc_plugins/vehicle_info_plugin/src/vehicle_info_hmi_command_factory.cc')
-rw-r--r--src/components/application_manager/rpc_plugins/vehicle_info_plugin/src/vehicle_info_hmi_command_factory.cc8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/components/application_manager/rpc_plugins/vehicle_info_plugin/src/vehicle_info_hmi_command_factory.cc b/src/components/application_manager/rpc_plugins/vehicle_info_plugin/src/vehicle_info_hmi_command_factory.cc
index 3687245066..131b5304c4 100644
--- a/src/components/application_manager/rpc_plugins/vehicle_info_plugin/src/vehicle_info_hmi_command_factory.cc
+++ b/src/components/application_manager/rpc_plugins/vehicle_info_plugin/src/vehicle_info_hmi_command_factory.cc
@@ -60,7 +60,7 @@ namespace strings = app_mngr::strings;
template <typename VehicleInfoCommandType>
class VehicleInfoCommandCreator : public application_manager::CommandCreator {
public:
- VehicleInfoCommandCreator(const VehicleInfoCommandParams& params)
+ explicit VehicleInfoCommandCreator(const VehicleInfoCommandParams& params)
: params_(params) {}
private:
@@ -85,7 +85,8 @@ template <>
class VehicleInfoCommandCreator<VehicleInfoInvalidCommand>
: public application_manager::CommandCreator {
public:
- VehicleInfoCommandCreator(const VehicleInfoCommandParams& params) {
+ // cppcheck-suppress unusedFunction //Used in VehicleInfoCommandCreatorFactory
+ explicit VehicleInfoCommandCreator(const VehicleInfoCommandParams& params) {
UNUSED(params);
}
@@ -103,7 +104,8 @@ class VehicleInfoCommandCreator<VehicleInfoInvalidCommand>
};
struct VehicleInfoCommandCreatorFactory {
- VehicleInfoCommandCreatorFactory(const VehicleInfoCommandParams& params)
+ explicit VehicleInfoCommandCreatorFactory(
+ const VehicleInfoCommandParams& params)
: params_(params) {}
template <typename VehicleInfoCommandType>