aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChih-Hung Hsieh2016-06-29 17:01:19 -0500
committerChih-Hung Hsieh2016-06-29 17:01:19 -0500
commitc27098d4677cb5d71a40060551f774b8a3a8afaa (patch)
treefb5b444546c633e3180fc835cc990777a3427873
parenta49c8a19dab9f754521af8a3d9c1787ee588189f (diff)
downloadplatform-bootable-recovery-c27098d4677cb5d71a40060551f774b8a3a8afaa.tar.gz
platform-bootable-recovery-c27098d4677cb5d71a40060551f774b8a3a8afaa.tar.xz
platform-bootable-recovery-c27098d4677cb5d71a40060551f774b8a3a8afaa.zip
Fix google-explicit-constructor warnings in bootable/recovery.
Bug: 28341362 Change-Id: I4c3ab0ad0f62f8f3a6f3b30771010533a2739381 Test: build with clang-tidy
-rw-r--r--device.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/device.h b/device.h
index f74b6b04..e0a3ff79 100644
--- a/device.h
+++ b/device.h
@@ -21,7 +21,7 @@
21 21
22class Device { 22class Device {
23 public: 23 public:
24 Device(RecoveryUI* ui) : ui_(ui) { } 24 explicit Device(RecoveryUI* ui) : ui_(ui) { }
25 virtual ~Device() { } 25 virtual ~Device() { }
26 26
27 // Called to obtain the UI object that should be used to display 27 // Called to obtain the UI object that should be used to display