diff options
| author | 2019-01-02 19:34:29 +0000 | |
|---|---|---|
| committer | 2019-01-02 19:34:29 +0000 | |
| commit | 50ee2201269e27c092509a4e8861a3b5a6d6a3fd (patch) | |
| tree | 3eabcc92e00aa05b0b129486533fde2656bb6dd6 | |
| parent | ff77ea8d58e1792006939143f19b1be898a324a6 (diff) | |
| parent | a08d2c2ee72775afdc9892cdc114902bd174f96d (diff) | |
Merge "Fix/suppress bootanimation google-explicit-constructor warnings"
| -rw-r--r-- | cmds/bootanimation/BootAnimation.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cmds/bootanimation/BootAnimation.h b/cmds/bootanimation/BootAnimation.h index b4699d884681..4fd5c0ef5f28 100644 --- a/cmds/bootanimation/BootAnimation.h +++ b/cmds/bootanimation/BootAnimation.h @@ -113,7 +113,7 @@ public: virtual void shutdown() {} }; - BootAnimation(sp<Callbacks> callbacks); + explicit BootAnimation(sp<Callbacks> callbacks); sp<SurfaceComposerClient> session() const; @@ -127,7 +127,7 @@ private: class TimeCheckThread : public Thread { public: - TimeCheckThread(BootAnimation* bootAnimation); + explicit TimeCheckThread(BootAnimation* bootAnimation); virtual ~TimeCheckThread(); private: virtual status_t readyToRun(); |