summaryrefslogtreecommitdiff
path: root/cmds/lshal/Command.h
diff options
context:
space:
mode:
author Chih-Hung Hsieh <chh@google.com> 2018-12-20 15:47:01 -0800
committer Chih-hung Hsieh <chh@google.com> 2019-01-10 19:53:01 +0000
commit45e31c739f6aaeec2c280eb098a44c69decebae2 (patch)
treea51834a7661ad6b59477e3169639c78a403a14f4 /cmds/lshal/Command.h
parenta7fa269ddaf4ee156bbe4796f0e77541d1283f98 (diff)
Fix/suppress cmds/lshal google-explicit-constructor warnings
* Add explicit to conversion constructors/operators * Use NOLINT or NOLINTNEXTLINE to suppress warnings on intended converters Bug: 28341362 Test: make with WITH_TIDY=1 DEFAULT_GLOBAL_TIDY_CHECKS=-*,google-explicit-constructor Change-Id: I67a59b0051b5550ea135a91664bf03995e94eb75
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.