summaryrefslogtreecommitdiff
path: root/src/components/application_manager/src/app_launch/apps_launcher.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/application_manager/src/app_launch/apps_launcher.cc')
-rw-r--r--src/components/application_manager/src/app_launch/apps_launcher.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/components/application_manager/src/app_launch/apps_launcher.cc b/src/components/application_manager/src/app_launch/apps_launcher.cc
index bf1fa2fb5d..1ee7bffb2a 100644
--- a/src/components/application_manager/src/app_launch/apps_launcher.cc
+++ b/src/components/application_manager/src/app_launch/apps_launcher.cc
@@ -56,7 +56,8 @@ void AppsLauncher::StartLaunching(ApplicationDataPtr app_data) {
}
struct AppLauncherFinder {
- AppLauncherFinder(const ApplicationDataPtr& app_data) : app_data_(app_data) {}
+ explicit AppLauncherFinder(const ApplicationDataPtr& app_data)
+ : app_data_(app_data) {}
bool operator()(const AppsLauncher::LauncherPtr& launcher) const {
DCHECK_OR_RETURN(launcher->app_data_ && app_data_, false)
return *launcher->app_data_ == *app_data_;