summaryrefslogtreecommitdiff
path: root/cmds/lshal/Command.h
diff options
context:
space:
mode:
Diffstat (limited to 'cmds/lshal/Command.h')
-rw-r--r--cmds/lshal/Command.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmds/lshal/Command.h b/cmds/lshal/Command.h
index 4f128ab56b..e19e3f7fc2 100644
--- a/cmds/lshal/Command.h
+++ b/cmds/lshal/Command.h
@@ -27,7 +27,7 @@ class Lshal;
// Base class for all *Commands
class Command {
public:
- Command(Lshal& lshal) : mLshal(lshal) {}
+ explicit Command(Lshal& lshal) : mLshal(lshal) {}
virtual ~Command() = default;
// Expect optind to be set by Lshal::main and points to the next argument
// to process.